Content from What is a reprex and why is it useful?


Last updated on 2025-05-08 | Edit this page

Overview

Questions

  • What steps can you take to solve problems in your code?
  • What is a minimal reproducible example?
  • Why are minimal reproducible examples important?
  • What variables are included in the Portal Project dataset?

Objectives

  • Understand the high-level process for getting unstuck in R.
  • Define each key characteristic of a minimal reproducible example.
  • Explain why minimal reproducible examples are central to getting help from others.
  • Load in the rodent survey data and briefly explain its contents.

Mickey is an ecologist working with data from The Portal Project, a long-term research study of rodents in Portal, Arizona. Mickey has just started in a new lab at their university. They are interested in learning about rodent morphology. For now, they are learning about the dataset by doing some descriptive analyses and visualizations of the data.

Mickey starts by loading the data so they can begin to explore it. They also load the {tidyverse}, a set of packages that will be useful for wrangling and visualizing the data.

::: instructor note Loading the entire {tidyverse} here, rather than a few component packages, is an intentional over-complication so that we can teach learners to simplify their packages later. Learners should have {tidyverse} installed, as per the setup instructions.

Would it be better to have the surveys dataset as a downloaded file for them to load in, or does loading it from a url make sense? :::

R

library(tidyverse)

OUTPUT

── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.4     ✔ readr     2.1.5
✔ forcats   1.0.0     ✔ stringr   1.5.1
✔ ggplot2   3.5.2     ✔ tibble    3.2.1
✔ lubridate 1.9.4     ✔ tidyr     1.3.1
✔ purrr     1.0.4
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors

R

surveys <- read_csv("https://raw.githubusercontent.com/carpentries-incubator/R-help-reprexes/refs/heads/main/episodes/data/surveys_complete_77_89.csv") 

OUTPUT

Rows: 16878 Columns: 13
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (6): species_id, sex, genus, species, taxa, plot_type
dbl (7): record_id, month, day, year, plot_id, hindfoot_length, weight

ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.

Mickey has some past experience in R, but this project will require more data analysis than they have done before. Mickey attended a Carpentries workshop, “Data Analysis and Visualization in R for Ecologists,” and they feel comfortable with the fundamentals of coding in R. Still, they are a little nervous about starting this project.

Prerequisites and target audience

This workshop assumes some prior experience with working in R and RStudio. We will assume you’ve taken the equivalent of the Data Analysis and Visualization in R for Ecologists workshop and are comfortable with basic commands, and we won’t necessarily explain every line of code in detail.

If you’re much more experienced in R, this workshop is still for you! Even expert coders may not always know how to get unstuck. We hope this workshop will be useful to people with a variety of coding backgrounds.

Sometimes, Mickey’s code doesn’t work as expected and they go to their colleague, Remy, for help. Remy has spent many hours sitting with Mickey, helping to work through various errors. But soon, Remy will be starting a big project, and they won’t have as much time to help with debugging.

::: instructor note The following exercises are optional, but they can are useful for getting learners settled in. :::

Think, pair, share: When you get stuck

When you’re coding in R and you get stuck, what are some things that you do to get help or get unstuck?

Think, pair, share: Helping someone else

Think about a time that you helped someone else with their code. What information did you need to know in order to help? (If you have never helped someone else with their code, think about a time that someone helped you–what information did they need to know in order to help?)

To help Mickey get more comfortable troubleshooting their own code, Remy suggests some steps to follow the next time they get stuck. Remy calls this the “Road Map to Getting Unstuck in R.”

Remy explains that the road map includes two main phases. First, there is guidance about “code first aid.” This includes understanding types of errors, reading function documentation, investigating error messages, and running through code line by line to diagnose problems.

Sometimes, these first aid steps are not enough to solve your problem. One of the most frustrating parts of learning to code is getting stuck and not knowing what to do! Luckily, there are many people in the R and data science communities who are happy to help, as long as you give them the right information. But figuring out how to ask a good question can feel even harder than the original problem that got you stuck in the first place. That’s why the second part of Jordan’s road map includes guidance on how to create a minimal reproducible example (also known as a “reprex”).

A minimal reproducible example is a piece of code that demonstrates the problem you are facing, includes all necessary information to show the problem but nothing extra, and will run easily on someone else’s computer.

Minimal reproducible examples are very important tools to get help when you’re stuck on a coding problem.

  • Stripping the code and data down to their simplest (minimal) parts makes it easy for a helper to zero in on what might be going wrong.

  • Making your example reproducible allows a helper to run your code on their own computer so they can “feel your pain” and understand what’s going wrong. Even experts often have to “tinker” with code in order to fix it. Providing a reprex makes that “tinkering” easy, which makes it more likely that a helper will take the time to assist you.

  • The process of making a minimal reproducible example often gives you insight into your own code. Often, you might end up solving the problem yourself, without even needing to ask for help.

Callout

The phenomenon of solving one’s own problem during the process of trying to explain it to someone else is often called “rubber duck debugging.” This is a reference to a story about programmers who would keep rubber ducks on their desks to explain coding problems to. Jenny Bryan refers to reprexes as “basically the rubber duck in disguise,” because they force you to explain your problem to someone else, often solving it in the process.

Jenny Bryan shares many other insights about reprexes in her 2018 talk “Help me help you: creating reproducible examples.”

Helpers

There are lots of people who might help you with your code: friends, colleagues, mentors, or total strangers online. In this lesson, we will use the term “helper” to refer to the person who is helping you to debug your code. Helpers are the target audience for your minimal reproducible example.

Jordan emphasizes to Mickey that they are still happy to be a helper, but that since they won’t have as much time to devote to debugging in the future, following this road map first will make the helping process more efficient. Hopefully, it will also make Mickey into a more confident coder!

Before heading off to their own work, Jordan also introduces Mickey to the dataset they’ve just loaded in.

R

glimpse(surveys)

OUTPUT

Rows: 16,878
Columns: 13
$ record_id       <dbl> 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,…
$ month           <dbl> 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, …
$ day             <dbl> 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16…
$ year            <dbl> 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, …
$ plot_id         <dbl> 2, 3, 2, 7, 3, 1, 2, 1, 1, 6, 5, 7, 3, 8, 6, 4, 3, 2, …
$ species_id      <chr> "NL", "NL", "DM", "DM", "DM", "PF", "PE", "DM", "DM", …
$ sex             <chr> "M", "M", "F", "M", "M", "M", "F", "M", "F", "F", "F",…
$ hindfoot_length <dbl> 32, 33, 37, 36, 35, 14, NA, 37, 34, 20, 53, 38, 35, NA…
$ weight          <dbl> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA…
$ genus           <chr> "Neotoma", "Neotoma", "Dipodomys", "Dipodomys", "Dipod…
$ species         <chr> "albigula", "albigula", "merriami", "merriami", "merri…
$ taxa            <chr> "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rod…
$ plot_type       <chr> "Control", "Long-term Krat Exclosure", "Control", "Rod…

R

min(surveys$year)

OUTPUT

[1] 1977

R

max(surveys$year)

OUTPUT

[1] 1989

Jordan explains that the dataset is made up of many individual rodent records (record_id). The date of each record is given by the month, day, and year columns.

The dataset includes data from a number of different study plots that had different treatments applied: plot IDs are given by the plot_id column, and the type of treatment is specified in plot_type.

There is information about the genus and species of each individual caught, as well as higher-level taxa information and a short-form species_id code.

For each individual caught, the field crew took weight, sex and hindfoot_length measurements, although those measurements are sometimes missing.

The dataset contains 16,878 rodent observations ranging across years from 1977 through 1989.

Callout

More information about the Portal Project and the surveys dataset is available at [LINK].

With an introduction to the dataset and a road map to guide them if they get stuck, Mickey feels ready to start coding!

Key Points

  • kp1
  • kp2
  • kp3

Content from Identify the problem and make a plan


Last updated on 2025-05-08 | Edit this page

Overview

Questions

  • What do I do when I encounter an error?
  • What do I do when my code outputs something I don’t expect?
  • Why do errors and warnings appear in R?
  • How can I find which areas of code are responsible for errors?
  • How can I fix my code? What other options exist if I can’t fix it?

Objectives

After completing this episode, participants should be able to…

  • Describe how the desired code output differs from the actual output
  • Categorize an error message (e.g. syntax error, semantic errors, package-specific errors, etc.)
  • decode/describe what an error message is trying to communicate
  • Identify specific lines and/or functions generating the error message
  • Use R Documentation to look up function syntax and examples
  • Quickly fix commonly-encountered R errors using the internet
  • Identify when a problem is better suited for asking for further help, including online help and reprex

OUTPUT


Attaching package: 'dplyr'

OUTPUT

The following objects are masked from 'package:stats':

    filter, lag

OUTPUT

The following objects are masked from 'package:base':

    intersect, setdiff, setequal, union

OUTPUT

Rows: 16878 Columns: 13
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (6): species_id, sex, genus, species, taxa, plot_type
dbl (7): record_id, month, day, year, plot_id, hindfoot_length, weight

ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.

(initial intro – edit upon looking at intro episode)

The first step we’ll cover is what to do when encountering an error or other undesired output from your code. With this episode, we hope to teach you the basics about identifying errors, rectifying them if possible, and if not, how to isolate the problem for others to look at. While the “RRRR I’m Stuck” lesson outlines a complete workflow on solving coding problems from errors to minimum reproducible examples, it is our experience that many seemingly-impossible errors can be understood and fixed without the full workflow. Here, we’ll go over errors, including how to solve many by yourself.

3.1 What do I do when I encounter an error?


Something that may go wrong is an error in your code. By this, we mean any code which generates an error message. This happens when R is unable to run your code, for a variety of reasons. While we can’t review every type of reason your code generates an error, we will try to teach you some tools for you to interpret and figure out errors yourself.

The accompanying error message attempts to tell you exactly how your code failed. For example, consider the following error message that occurs when I run this command in the R console:

R

ggplot(x = taxa) + geom_bar()

ERROR

Error: object 'taxa' not found

Though we know somewhere there is an object called taxa (it is actually a column of the dataset rodents), R is trying to communicate that it cannot find any such object in the local environment. Let’s try again, appropriately pointing ggplot to the rodents dataset and taxa column using the $ operator.

R

ggplot(aes(x = rodents$taxa)) + geom_bar()

ERROR

Error in `fortify()`:
! `data` must be a <data.frame>, or an object coercible by `fortify()`,
  or a valid <data.frame>-like object coercible by `as.data.frame()`, not a
  <uneval> object.
ℹ Did you accidentally pass `aes()` to the `data` argument?

Whoops! Here we see another error message – this time, R responds with a perhaps more-uninterpretable message.

Let’s go over each part briefly. First, we see an error from a function called fortify, which we didn’t even call! Then a much more helpful informational message: Did we accidentally pass aes() to the data argument? This does seem to relate to our function call, as we do pass aes, potentially where our data should go. A helpful starting place when attempting to decipher an error message is checking the documentation for the function which caused the error:

?ggplot

Here, a Help window pops up in RStudio which provides some more information. Skipping the general description at the top, we see ggplot takes positional arguments of data, then mapping, which uses the aes call. We can see in “Arguments” that the aes(x = rodents$taxa) object used in the plot is attempted by fortify to be converted to a data.frame: now the picture is clear! We accidentally passed our mapping argument (telling ggplot how to map variables to the plot) into the position it expected data in the form of a data frame. And if we scroll down to “Examples”, to “Pattern 1”, we can see exactly how ggplot expects these arguments in practice. Let’s amend our result:

R

ggplot(rodents, aes(x = taxa)) + geom_bar()

Here we see our desired plot.

Some common errors you might run into include R expecting different input types for a function than those given, being unable to process data in the way the code is written (e.g. divide by zero errors), or being unable to find a variable or function you’ve specified.

Summary


In general, when encountering an error message for which a remedy is not immediately apparent, some steps to take include:

  1. Reading each part of the error message, to see if we can interpret and act on any.

  2. Pulling up the R Documentation for that function (which may be specific to a package, such as with ggplot).

  3. Reading through the documentation’s Description, Usage, Arguments, Details and Examples entries for greater insight into our error.

  4. Copying and pasting the error message into a search engine for more interpretable explanations.

And, when all else fails, preparing our code into a reproducible example for expert help.

3.2 What do I do when my code outputs something I don’t expect


Another type of ‘error’ which you may encounter is when your R code runs without errors, but does not produce the desired output. You may sometimes see these called “semantic errors” (as opposed to syntax errors, though these term themselves are vague within computer science and describe a variety of different scenarios). As with actual R errors, semantic errors may occur for a variety of non-intuitive reasons, and are often harder to solve as there is no description of the error – you must work out where your code is defective yourself!

With our rodent analysis, the next step in the plan is to subset to just the Rodent taxa (as opposed to other taxa: Bird, Rabbit, Reptile or NA). Let’s quickly check to see how much data we’d be throwing out by doing so:

R

table(rodents$taxa)

OUTPUT


   Bird  Rabbit Reptile  Rodent
    300      69       4   16148 

We’re interested in the Rodents, and thankfully it seems like a majority of our observations will be maintained when subsetting to rodents. Except wait. In our plot, we can clearly see the presence of NA values. Why are we not seeing them here? This is an example of a semantic error – our command is executed correctly, but the output is not everything we intended. Having no error message to interpret, let’s jump straight to the documentation:

R

?table

OUTPUT

Help on topic 'table' was found in the following packages:

  Package               Library
  vctrs                 /home/runner/.local/share/renv/cache/v5/linux-ubuntu-jammy/R-4.5/x86_64-pc-linux-gnu/vctrs/0.6.5/c03fa420630029418f7e6da3667aac4a
  base                  /home/runner/.cache/R/renv/sandbox/linux-ubuntu-jammy/R-4.5/x86_64-pc-linux-gnu/9a444a72


Using the first match ...

Here, the documentation provides some clues: there seems to be an argument called useNA that accepts “no”, “ifany”, and “always”, but it’s not immediately apparent which one we should use. As a second approach, let’s go to Examples to see if we can find any quick fixes. Here we see a couple lines further down:

R

table(a)                 # does not report NA's
table(a, exclude = NULL) # reports NA's

That seems like it should be inclusive. Let’s try again:

R

table(rodents$taxa, exclude = NULL)

OUTPUT


   Bird  Rabbit Reptile  Rodent    <NA>
    300      69       4   16148     357 

Now, we do see that by subsetting to the “Rodent” taxa, we are losing about 357 NAs, which themselves could be rodents! However, in this case, it seems a small enough portion to safely omit. Let’s subset our data to the rodent taxa

R

rodents <- rodents %>% filter(taxa == "Rodent")

Challenge

There are 3 lines of code below, and each attempts to create the same plot. Identify which produces a syntax error, which produces a semantic error, and which correctly creates the plot (hint: this may require you inferring what type of graph we’re trying to create!)

  1. ggplot(rodents) + geom_bin_2d(aes(month, plot_type))

  2. ggplot(rodents) + geom_tile(aes(month, plot_type), stat = "count")

  3. ggplot(rodents) + geom_tile(aes(month, plot_type))

In this case, A correctly creates the graph, plotting as colors in the tile the number of times an observation is seen. It essentially runs the following lines of code:

R

rodents_summary <- rodents %>% group_by(plot_type, month) %>% summarize(count=n())

OUTPUT

`summarise()` has grouped output by 'plot_type'. You can override using the
`.groups` argument.

R

ggplot(rodents_summary) + geom_tile(aes(month, plot_type, fill=count))

B is a syntax error, and will produce the following error:

R

ggplot(rodents) + geom_tile(aes(month, plot_type), stat = "count")

ERROR

Error in `geom_tile()`:
! Problem while computing stat.
ℹ Error occurred in the 1st layer.
Caused by error in `setup_params()`:
! `stat_count()` must only have an x or y aesthetic.

Finally, C is a semantic error. It produces a plot, which is rather meaningless:

R

ggplot(rodents) + geom_tile(aes(month, plot_type))

Summary


In general, when encountering a semantic error for which a remedy is not immediately apparent, some steps to take include:

  1. Reading any warning or informational messages that may pop up when executing your code.

  2. Pulling up the R Documentation for that function (which may be specific to a package, such as with ggplot).

  3. Reading through the documentation’s Description, Usage, Arguments, Details and Examples entries for greater insight into our error.

  4. Changing the input to your function call to see if the output or semantic error can be made more apparent (maybe delete).

And, when all else fails, preparing our code into a reproducible example for expert help. Note, there are fewer options available with semantic errors as when an error message prevents your code from running. You may find yourself having to isolate or ask for help more often than with easily-solvable syntax errors.

Callout

Generally, the more your code deviates from just using base R functions, or the more you use specific packages, both the quality of documentation and online help available from search engines and Googling gets worse and worse. While base R errors will often be solvable in a couple of minutes from a quick ?help check or a long online discussion and solutions on a website like Stack Overflow, errors arising from little-used packages applied in bespoke analyses might merit isolating your specific problem to a reproducible example for online help, or even getting in touch with the developers! Such community input and questions are often the way packages and documentation improves over time.

3.3 How can I find where my code is failing?


Isolating your problem may not be as simple as assessing the output from a single function call on the line of code which produces your error. Often, it may be difficult to determine which line(s) in your code are producing the error.

Consider the example below, where we now are attempting to see how which species of kangaroo rodents appear in different plot types over the years. To do so, we’ll filter our dataset to just include the genus Dipodomys. Then we’ll plot a histogram of which how many observations are seen in each plot type over an x axis of years.

R

krats <- rodents %>% filter(genus == "Dipadomys") #kangaroo rat genus

ggplot(krats, aes(year, fill=plot_type)) + 
geom_histogram() +
facet_wrap(~species)

ERROR

Error in `combine_vars()`:
! Faceting variables must have at least one value.

Uh-oh. Another error here, this time in “combine_vars?” What is that? “Faceting variables must have at least one value”: What does that mean?

Well it may be clear enough that we seem to be missing “species” values where we intend. Maybe we can try to make a different graph looking at what species values are present? Or perhaps there’s an error earlier – our safest approach may actually be seeing what krats looks like:

R

krats

OUTPUT

# A tibble: 0 × 13
# ℹ 13 variables: record_id <dbl>, month <dbl>, day <dbl>, year <dbl>,
#   plot_id <dbl>, species_id <chr>, sex <chr>, hindfoot_length <dbl>,
#   weight <dbl>, genus <chr>, species <chr>, taxa <chr>, plot_type <chr>

It’s empty! What went wrong with our “Dipadomys” filter? Let’s use a print statement to see which genuses are included in the original rodents dataset.

R

print(rodents %>% count(genus))

OUTPUT

# A tibble: 12 × 2
   genus                n
   <chr>            <int>
 1 Ammospermophilus   136
 2 Baiomys              3
 3 Chaetodipus        382
 4 Dipodomys         9573
 5 Neotoma            904
 6 Onychomys         1656
 7 Perognathus        553
 8 Peromyscus        1271
 9 Reithrodontomys   1412
10 Rodent               4
11 Sigmodon           103
12 Spermophilus       151

We see two things here. For one, we’ve misspelled Dipodomys, which we can now amend. This quick function call also tells us we should expect a data frame with 9573 values resulting after subsetting to the genus Dipodomys.

R

krats <- rodents %>% filter(genus == "Dipodomys") #kangaroo rat genus
dim(krats)

OUTPUT

[1] 9573   13

R

ggplot(krats, aes(year, fill=plot_type)) + 
geom_histogram() +
facet_wrap(~species)

OUTPUT

`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

Our improved code here looks good. Checking the dimensions of our subsetted data frame using the dim() function confirms we now have all the Dipodomys observations, and our plot is looking better. In general, having a ‘print’ statement or some other output before plots or other major steps can be a good way to check your code is producing intermediate results consistent with your expectations.

However, there’s something funky happening here. The bins are definitely weirdly spaced – we can see some bins are not filled with any observations, while those exactly containing one of the integer years happens to contain all the observations for that year.

A solution here might be to tinker with the bin width in the histogram code, but let’s step back a minute. Do we necessarily need to dive into the depths of tinkering with the plot? We can evalulate this problem not in terms of the plot having a problem, but with our data type having a problem. There’s an opportunity to encode the observation times outside of coarse, somewhat arbitrary year groupings with the real, interpretable date they were collected. Let’s do that using the tidyverse’s ‘lubridate’ package. The important details here are that we are creating a ‘datetime’-type variable using the recorded years, months, and days, which are currently all encoded as numeric types.

R

krats <- rodents %>% filter(genus == "Dipodomys") #kangaroo rat genus
dim(krats)

OUTPUT

[1] 9573   13

R

krats <- krats %>% mutate(date = lubridate::ymd(paste(year,month,day,sep='-')))

ggplot(krats, aes(date, fill=plot_type)) + 
  geom_histogram() +
  facet_wrap(~species)

OUTPUT

`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

This looks much better, and is easier to see the trends over time as well. Note our x axis still shows bins with year labelings, but the continuous spread of our data over these bins shows that dates are treated more continuously and fall more continuously within histogram bins.

One aspect we can see with this exercise above is that sometimes the ‘problem’ we need to solve is not super intuitive or can be isolated to one line. Before attempting to hack a bespoke solution, sometimes it’s helpful to consider whether this might be an often-encountered problem (even if you can’t exactly articulate the problem yourself) or one where you have some intuition there is a simpler or more elegant solution.

By setting up a reproducible example, we can isolate the problem with real data rather than simply asking a proximal question online or to a friend (e.g. ‘how can i change my plot to look like so’). This allows the community to assist in identifying the problem – you don’t always need to have it figured out before asking for help!

Callout

Often, giving your expert helpers access to the entire problem, with a detailed description of your desired output allows you to directly improve your coding skills and learn about new functions and techniques.

Summary


In general, we need to isolate the specific areas of code causing the bug or problem. There is no general rule of thumb as to how large this needs to be, but in general, think about what we would want to include in a reprex. Any early lines which we know run correctly and as intended may not need to be included, and we should seek to isolate the problem area as much as we can to make it understandable to others.

Let’s add to our list of steps for identifying the problem:

  1. Identify the problem area – add print statements immediately upstream or downstream of problem areas, check the desired output from functions, and see whether any intermediate output can be further isolated.

  2. Read each part of the error or warning message (if applicable), to see if we can immediately interpret and act on any.

  3. Pull up R Documentation for any function calls causing the error (which may be specific to a package, such as with ggplot).

  4. Read through the documentation’s Description, Usage, Arguments, Details and Examples entries for greater insight into our error.

  5. Copy and paste the error message into a search engine for more interpretable explanations.

And, when all else fails, prepare our code into a reproducible example for expert help.

While this is similar to our previous checklists, we can now understand these steps as a continuous cycle of isolating the problem into more and more discrete chunks for a reproducible example. Any step in the above that helps us identify the specific areas or aspects of our code that are failing in particular, we can zoom in on and restart the checklist. We can stop as soon as we don’t understand anymore how our code fails. At this point, we can excise that area for further help using a reprex.

Finally, let’s make our plot publication-ready by changing some aesthetics. Let’s also add a vertical line to show when the study design changed on the exclosures.

R

krats <- rodents %>% filter(genus == "Dipodomys") #kangaroo rat genus
dim(krats)

OUTPUT

[1] 9573   13

R

krats <- krats %>% mutate(date = lubridate::ymd(paste(year,month,day,sep='-')))


krats %>%
  ggplot(aes(x = date, fill = plot_type)) +
  geom_histogram()+
  facet_wrap(~species, ncol = 1)+ 
  theme_bw()+
  scale_fill_viridis_d(option = "plasma")+
  geom_vline(aes(xintercept = lubridate::ymd("1988-01-01")), col = "dodgerblue")

OUTPUT

`stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

It looks like the study change helped to reduce merriami sightings in the Rodent and Short-term Krat exclosures.

Content from Minimal Reproducible Data


Last updated on 2025-05-09 | Edit this page

Overview

Questions

  • What is a minimal reproducible dataset, and why do I need it?
  • How do I create a minimal reproducible dataset?
  • Can I just use my own data?

Objectives

  • Describe a minimal reproducible dataset
  • Identify the aspects of your data necessary to replicate your issue
  • Create a dataset from scratch to replicate your issue
  • Share your own dataset in a way that is minimal, accessible, and reproducible
  • Subset an existing dataset to replicate your issue

3.1 What is a minimal reproducible dataset and why do I need it?


Now that you have narrowed down your problem area and stripped down your code to make it minimal we need to ensure it is reproducible; this means it needs to be accessible and runnable such that anyone else can copy-paste it into their system, run the code, and replicate your issue. Importantly, an example code will always require example data in order to run! Therefore, every reprex requires you to provide a minimal reproducible dataset to use with the code.

Furthermore, as we have seen previously, sometimes the source of the problem isn’t actually your code, but rather your data! By providing an example dataset that, when used in your example code, still replicates your issue, you also give your helper the opportunity to better investigate and manipulate that data to fix your issue. It would be great if we could give the helper our entire computer so they could just take over where we left off, but usually we can’t.

Just as we did with our code, when providing such an example dataset we also want to make sure we keep it minimal–free of unnecessary data. This will allow your helper to more clearly see what the data looks like and what the source of your issue may be. Furthermore, it will allow you to not only better understand your data but also potentially work out the source of your issue. When extraneous information is removed and only the parts that replicate the issue are kept, we can begin to see where the issues arise.

In short, a minimal reproducible dataset must be:

  • minimal: it only contains the necessary information to run your minimal code. You can also think of this as being relevant to the problem: keep only what is necessary.
  • reproducible: it must be accessible to someone without your computer, and it must consistently replicate your output/issue. This means it also needs to be complete, meaning there are no dependencies that have been omitted.

Remember: your helper may not be in the room with you or have access to your computer and the files that are on it!

You might be used to always uploading data from separate files, but helpers can’t access those files. Even if you sent someone a file, they would need to put it in the right directory, make sure to load it in exactly the same way, make sure their computer can open it, etc. Since the goal is to make everyone’s lives as easy as possible, we need to think about our data in a different way–as a dummy object created in the script itself.

Pro-tip

An example of what minimal reproducible examples look like can also be found in the ?help section, in R Studio. Just scroll all the way down to where there are examples listed. These will usually be minimal and reproducible.

For example, let’s look at the function mean:

R

?mean

We see examples that can be run directly on the console, with no additional code.

R

x <- c(0:10, 50)
xm <- mean(x)
c(xm, mean(x, trim = 0.10))

OUTPUT

[1] 8.75 5.50

In this case, x is the dummy dataset consisting of just 1 variable. Notice how it was created as part of the example.

Exercise 1

These datasets are not well suited for use in a reprex. For each one, try to reproduce the dataset on your own in R (copy-paste). Does it work? What happened? Explain.

  1. Screenshot of the ratdat comple_old dataset.
  2. sample_data <- read_csv(“/Users/kaija/Desktop/RProjects/ResearchProject/data/sample_dataset.csv”)
  3. dput(complete_old[1:100,])
  4. sample_data <- data.frame(species = species_vector, weight = c(10, 25, 14, 26, 30, 17))
  1. Not reproducible because it is a screenshot.
  2. Not reproducible because it is a path to a file that only exists on someone else’s computer and therefore you do not have access to it using that path.
  3. Not minimal, it has far too many columns and probably too many rows. It is also not reproducible because we were not given the source for complete_old.
  4. Not reproducible because we are not given the source for species_vector.

Exercise 2

Let’s say we want to know the average weight of all the species in our rodents dataset. We try to use the following code…

R

mean(rodents$weight)

OUTPUT

[1] NA

…but it returns NA! We don’t know why that is happening and we want to ask for help.

Which of the following represents a minimal reproducible dataset for this code? Can you describe why the other ones are not?

  1. sample_data <- data.frame(month = rep(7:9, each = 2), hindfoot_length = c(10, 25, 14, 26, 30, 17))
  2. sample_data <- data.frame(weight = rnorm(10))
  3. sample_data <- data.frame(weight = c(100, NA, 30, 60, 40, NA))
  4. sample_data <- sample(rodents$weight, 10)
  5. sample_data <- rodents_modified[1:20,]

The correct answer is C!

  1. does not include the variable of interest (weight).
  2. does not produce the same problem (NA result with a warning message)–the code runs just fine.
  3. minimal and reproducible.
  4. is not reproducible. Sample randomly samples 10 items; sometimes it may include NAs, sometime it may not (not guaranteed to reproduce the error). It can be used if a seed is set (see next section for more info).
  5. uses a dataset that isn’t accessible without previous data wrangling code–the object rodents_modified doesn’t exist.

3.2 Can I just use my own data?


At this point you may be wondering why you need a separate dataset, can’t you just use your own data if you made sure it was minimal and your helper could access it?

Callout

There are several reasons why you might need to create a separate dataset that is minimal and reproducible instead of trying to use your actual dataset. The original dataset may be:

  • too large - the Portal dataset is ~35,000 rows with 13 columns and contains data for decades. That’s a lot!
  • private - your dataset might not be published yet, or maybe you’re studying an endangered species whose locations can’t easily be shared. Another example: many medical datasets cannot be shared publically.
  • hard to send - on most online forums, you can’t attach supplemental files (more on this later). Even if you are just sending data to a colleague, file paths can get complicated, the data might be too large to attach, etc.
  • complicated - it would be hard to locate the relevant information. One example to steer away from are needing a ‘data dictionary’ to understand all the meanings of the columns (e.g. what is “plot type” in ratdat?) We don’t our helper to waste valuable time to figure out what everything means.
  • highly derived/modified from the original file. You may have already done a bunch of preliminary data wrangling you don’t want to include when you send the example, so you would need to provide the intermediate dataset directly to your helper.

If so, you wouldn’t be entirely wrong. While there could be several ways in which your original data may be inaccessible or hard to derive or subset, there are likely just as many ways you could make it anonymous, minimal, and reproducible. And we will show you how! Nevertheless, making your own data minimal and reproducible isn’t necessarily easier than creating a new dataset from scratch. Furthermore, creating a dataset from scratch can often highlight the source of your issue! Which means you might not need to ask help after all or you can ask a more specific question.

3.3 How do I create a minimal reproducible dataset?


In general, there are 3 common ways to provide minimal reproducible data for a reprex.

  • You can write a script that creates a new “dummy” dataset with the same key characteristics as your original data.

  • You can make your own data minimal and reproducible.

  • You can use a dataset that is already embedded in R and is therefore already accessible.

For the purpose of this lesson, we believe each coder is entitled to all the options, therefore we will walk you through how to provide a minimal reproducible dataset using each of these 3 methods. However, opinions generally differ on which method is best for which situations. Below we compiled a summary table of advantages and disadvantages of each method based on many conversations with several data science groups.

[ INSERT TABLE]

3.4 Creating a “dummy” dataset from scratch


While this might be the most daunting option for novices, it tends to be the preferred methods for experts. That’s probably because, once you really understand the basic building blocks, it becomes the most straight-forward method of creating a minimal reproducible dataset. This is also the method that makes most sense when doing other activities that also require a reprex (e.g., teaching, collaborating, developing). Lastly, in this lesson we believe there are greater problem-solving insights to be gained by creating a new “dummy” dataset. So let’s start by making this scary process more easily digestible!

Usually, at this stage, you would have 2 pressing quesions:

  1. How do I create a dataset?
  2. How do I recreate the key elements of my data that replicate my issue?

Let’s start with the first.

There are many ways one can create a dataset in R.

You can start by creating vectors using c()

R

vector <- c(1,2,3,4) 
vector

OUTPUT

[1] 1 2 3 4

You can also add some randomness by sampling from a vector using sample().

For example you can sample numbers 1 through 10 in a random order

R

x <- sample(1:10)
x

OUTPUT

 [1]  3  2  6  5  4  7  1  8  9 10

Or you can randomly sample from a normal distribution

R

x <- rnorm(10)
x

OUTPUT

 [1] -0.5055677  0.4823980 -0.9489147 -0.9641731 -1.0551784 -2.2645640
 [7]  1.3496923  1.1007352  0.8309532 -0.2582096

You can also use letters to create factors.

R

x <- sample(letters[1:4], 20, replace=T)
x

OUTPUT

 [1] "b" "d" "d" "a" "d" "a" "a" "b" "a" "c" "c" "a" "a" "d" "a" "d" "c" "c" "b"
[20] "b"

Remember that a data frame is just a collection of vectors. You can create a data frame using data.frame (or tibble in the dplyr package). You can then create a vector for each variable.

R

data <- data.frame (x = sample(letters[1:3], 20, replace=T), 
                    y = rnorm(1:20))
head(data)

OUTPUT

  x           y
1 c -0.34337410
2 b  0.91657790
3 b  0.04606742
4 b -1.38473490
5 a -0.81136007
6 b -1.22277998

However, when sampling at random you must remember to set.seed() before sending it to someone to make sure you both get the same numbers!

Callout

For more handy functions for creating data frames and variables, see the cheatsheet. For some questions, specific formats can be needed. For these, one can use any of the provided as.someType functions: as.factor, as.integer, as.numeric, as.character, as.Date, as.xts.

Exercise 3: Your turn! (Optional)

Create a data frame with:

A. One categorical variable with 2 levels and one continuous variable. B. One continuous variable that is normally distributed. C. Name, sex, age, and treatment type.

3.5 Identifying the key elements of your data


No matter which approach we take for providing a dataset, we need to identify which elements of our original data are necessary. To do so, we propose starting a few simple questions to investigate your data:

  • How many variables do we need?
  • What data type (discrete or continuous) is each variable?
  • How many levels and/or observations are necessary?
  • Should the values be distributed in a specific way?
  • Are there any NAs that could be relevant?

Let’s come back to our kangaroo rats example. Here is the minimal code we settled on:

R

# Minimal code [Or whatever we end up with]
krats_subset <- rodents %>%
  filter(species == c("ordii", "spectabilis"),
         sex == c("F", "M"))

table(krats_subset$sex, krats_subset$species)

OUTPUT


    ordii spectabilis
  F   350           0
  M     0         626

So we want to create a minimal reproducible ‘dummy’ version of krats_subet. Let’s start by taking a quick look, then aswering the questions.

R

head(krats_subset)

OUTPUT

  record_id month day year plot_id species_id sex hindfoot_length weight
1        58     7  18 1977      12         DS   M              45     NA
2        80     8  19 1977       1         DS   M              48     NA
3       104     8  20 1977      11         DS   M              43     NA
4       144     8  21 1977      15         DS   M              40     NA
5       176     9  11 1977      12         DS   M              45     NA
6       182     9  11 1977      21         DS   M              49     NA
      genus     species   taxa                plot_type
1 Dipodomys spectabilis Rodent                  Control
2 Dipodomys spectabilis Rodent        Spectab exclosure
3 Dipodomys spectabilis Rodent                  Control
4 Dipodomys spectabilis Rodent Long-term Krat Exclosure
5 Dipodomys spectabilis Rodent                  Control
6 Dipodomys spectabilis Rodent Long-term Krat Exclosure

Excercise 4

Try to answer the following questions on your own to determine what we need to include in our minimal reproducible dataset:

  1. How many variables do we need?
  2. What data type (discrete or continuous) is each variable?
  3. How many levels and/or observations are necessary?
  4. Should the values be distributed in a specific way?
  5. Are there any NAs that could be relevant?

Let’s go over the answers together and build a dataset as we go along!

  1. How many variables do we need?

We need species, sex, and maybe a third identifier like record_id. This means we potentially need 3 vector (remember, each column in a dataframe is essentially just a vector).

  1. What data type (discrete or continuous) is each variable?

Species and sex are both discrete (categorical) variables, while record ID would be more continuous.

  1. How many levels and/or observations are necessary?

Since we are filtering our dataset down to 2 categories for both species and sex, that means we need at least 3 levels in each to start with. In terms of number of observations there don’t seem to be specific restrictions other than we probably want at least 1 observations per original category, so 2*3=6, or we can just pick another typical nice number like 10.

  1. Should the values be distributed in a specific way?

Since question probably isn’t going to be relevant most of the time, but certainly worth considering. If we needed a longer dataset of measurements we may have wanted to make sure it was normally distributed. If we needed a longer dataset of counts we may have wanted to make sure it was Poisson distributed. Or maybe we had bimodal data. But in this case, we had a short dataset and I don’t think it matters. We can always come back to this if we are unable to replicate our issue (hint: in which case the distribution may be related to the issue).

  1. Are there any NAs that could be relevant?

We don’t have any NAs but we do have a blank category under sex. For all we know that could be important, so maybe we want to also make one of our categories blank.

R

# We need 3 variables: species, sex, and record_id
# species and sex are categorical with at least 3 levels, one of which is blank for sex
species <- sample(letters, 3, replace=F)
print(species)

OUTPUT

[1] "t" "e" "d"

R

sex <- c('M','F','')
print(sex)

OUTPUT

[1] "M" "F" "" 

R

# record_id is continuous 
record_id <- 1:10
print(record_id)

OUTPUT

 [1]  1  2  3  4  5  6  7  8  9 10

R

# Now let's go sampling and put it all together
sample_data <- data.frame(
  record_id = record_id,
  species = sample(species, 10, replace=T),
  sex = sample(sex, 10, replace=T)
)
print(sample_data)

OUTPUT

   record_id species sex
1          1       t
2          2       e
3          3       e
4          4       t   M
5          5       e   M
6          6       t   F
7          7       e   F
8          8       d
9          9       d   F
10        10       t    

And just like that we created a ‘dummy’ dataset from scratch! Notice that we could also have compiled the same type of dataset in a single line by creating each vector already within the data.frame()

R

sample2_data <- data.frame(
  record_id = 1:10,
  species = sample(letters[1:3], 10, replace=T),
  sex = sample(c('M','F',''), 10, replace=T)
)
print(sample2_data)

OUTPUT

   record_id species sex
1          1       a   M
2          2       c   F
3          3       b   F
4          4       a   M
5          5       c   F
6          6       c   M
7          7       a
8          8       c   F
9          9       b   F
10        10       b   F

Important: Notice that the outputs of if you want the outputs to be EXACTLY the same each time, but you are using sample() which is an inherently random process, you must first use set.seed() and share that with your helper too.

R

set.seed(1) # set seed before recreating the sample
sample_data <- data.frame(
  record_id = 1:10,
  species = sample(letters[1:3], 10, replace=T),
  sex = sample(c('M','F',''), 10, replace=T)
)
print(sample_data)

OUTPUT

   record_id species sex
1          1       a
2          2       c   M
3          3       a   M
4          4       b   M
5          5       a   F
6          6       c   F
7          7       c   F
8          8       b   F
9          9       b
10        10       c   M

Callout

Adding a set.seed() at the start of your reprex will ensure anyone else who runs the same code in the same order will always get the same results. However, if using it more generally, you may want to read more about it. For example, in the example below we set a seed of 2 and then run sample(10) twice. You will notice that the output of each sample run is not the same. However, if you run the whole code again, you will see that each of the outputs actually do stay the same.

R

set.seed(2)
sample(10)

OUTPUT

 [1]  5  6  9  1 10  7  4  8  3  2

R

sample(10)

OUTPUT

 [1]  1  3  6  2  9 10  7  5  4  8

Great! Now we need to check whether it works within our code and whether it reproduces our issue

R

# Minimal code [or whatever we end up with] 
sample_subset <- sample_data %>% # replace rodents with our sample dataset
  filter(species == c("a", "b"), # replace species with those from our sample dataset
         sex == c("F", "M")) # this can stay the same because we recreated it the same

table(sample_subset$sex, sample_subset$species)

OUTPUT


    a b
  F 1 0
  M 0 1

It works! Our sample size has unexpectedly been reduced to just 2 observations, when we would have expected a sample of 8, based on the sample_data output above. Wherever the issue lies, we were able to successfully replicate it in our minimal ‘dummy’ dataset.

Exercise 5: Your turn!

Now practice doing it yourself. Create a data frame with:

A. One categorical variable with 2 levels and one continuous variable. B. One continuous variable that is normally distributed. C. Name, sex, age, and treatment type.

3.6 Using your own data set


Even once you master the art of creating ‘dummy’ datasets, there may be occasions in which your data or your issue is maybe too complex and you can’t seem to replicate the issue. Or maybe you still think using your own data would just be easier.

In cases when you want to make your own data minimal and reproducible, you will want to take a similar approach to what we did in Episode 2 when making our code minimal. Keep what is essential, get rid of the rest. In other words, we will want to subset our data into a smaller, more digestible chunk.

The question still arises: how do I know what is essential?

Use the same guiding questions that we used earlier!

  1. How many (or rather which) variables do we need?
  2. What data type is each variable? (less necessary, since we are keeping the actual variables)
  3. How many levels and/or observations are necessary? (potentially still useful, we don’t want to get rid of more than we need)
  4. Should the values be distributed in a specific way? (they are as they are, but worth keeping in mind in terms of how we are removing observations)
  5. Are there any NAs that could be relevant?

Based on our previous answers we end up with:

  1. We need species, sex, and maybe record_id
  2. Species and sex are categorical, record_id is a continuous count of our observations.
  3. As we said earlier, we want 3 each for species and sex, which happens to already be the case. And we could reduce our record_id size to ~10.
  4. Not really, but we want to make sure that when we reduce the number of observations we still have observations in each of the 3 levels in species and sex.
  5. No NA’s, but we still don’t know if the blanks are relevant, so let’s make sure we keep at least one.

Now that we have a clearer goal, let’s subset our data.

Useful functions for subsetting a dataset include subset(), head(), tail(), and indexing with [] (e.g., iris[1:4,]). Alternatively, you can use tidyverse functions like select(), and filter() from the tidyverse. You can also use the same sample() functions we covered earlier.

Note: you should already have an understanding of how to subset or wrangle data using the tidyverse from the R for Ecology lesson. If not, go check it out! [insert link to lesson]

R

# Remember your minimal code
krats_subset <- rodents %>%
  filter(species == c("ordii", "spectabilis"),
         sex == c("F", "M"))

table(krats_subset$sex, krats_subset$species)

OUTPUT


    ordii spectabilis
  F   350           0
  M     0         626

Exercise 6: Think quick!

Which dataset are we trying to make minimal and reproducible? Hint: the two datasets we can see are krats_sebset and rodents

Given that the code that is going wrong is that which creates krats_subset, we need to create a minimal reproducible version of rodents! We can then insert our new_rodent dataset in place of the original rodent one.

Step 1: select the variables of interest

R

# subset rodent into new_rodent to make it minimal
# Note: there are many ways you could do this!
new_rodent <- rodents %>% 
  # 1. select the variables of interest
  select(record_id, species, sex)
  # PAUSE. Does this work so far?
print(new_rodent)

OUTPUT

   record_id      species sex
1          1     albigula   M
2          2     albigula   M
3          3     merriami   F
4          4     merriami   M
5          5     merriami   M
6          6       flavus   M
7          7     eremicus   F
8          8     merriami   M
9          9     merriami   F
10        10       flavus   F
11        11  spectabilis   F
12        12     merriami   M
13        13     merriami   M
14        14     merriami
15        15     merriami   F
16        16     merriami   F
17        17  spectabilis   F
18        18 penicillatus   M
19        19       flavus
20        20  spectabilis   F
21        21     merriami   F
22        22     albigula   F
23        23     merriami   M
24        24     hispidus   M
25        25     merriami   M
26        26     merriami   M
27        27     merriami   M
28        28     merriami   M
29        29 penicillatus   M
30        30  spectabilis   F
31        31     merriami   F
32        32     merriami   F
33        33     merriami   F
 [ reached 'max' / getOption("max.print") -- omitted 16115 rows ]

Step 2-5: reduce the number of observations to ~10 while making sure the dataset still contains at least 3 species and at least 3 sexes

While the rest is just one step, it is the trickiest, because this is where we want to ensure the key elements of our original dataset, as defined earlier, are preserved.

Exercise 7: Try it yourself

How would you continue the subsetting pipeline? How could you reduce the number of observations while making sure you still have at least 3 species and 3 sexes left? Hint: there is no single right answer! Trial and error works wonders.

R

set.seed(1)
new_rodents <- rodents %>% 
  # 1. select the variables of interest
  select(record_id, species, sex) %>%
  slice_sample(n=4, replace = F, by='sex')
print(new_rodents)

OUTPUT

   record_id     species sex
1       2359    merriami   M
2      16335    albigula   M
3       9910       ordii   M
4       8278       ordii   M
5      12038    merriami   F
6       7862   megalotis   F
7       9221    albigula   F
8       1335 spectabilis   F
9       9862     harrisi
10     14979    merriami
11     11333   spilosoma
12       351 leucogaster    

The code ran wihtout issues, yay! But do we end up with what we were looking for?

  1. Doe we have ~10 observations? Yes! 9 seems good enough
  2. Do we have at least 3 species? Yes! We have 7 (we could choose to reduce this further)
  3. Do we have at least 3 sexes? Yes! M, F, and blank

Great! All of our requirements are fulfilled. Now let’s see if it replicates our issue when we add it to our minimal code.

Note: slice_sample() and similar functions allow you to specify and customize how exactly you want that sample to be taken (check the documentation!). For example, you can specify a proportion of rows to select, specify how to order variables, whether ties [may require more explanation] should be kept together, or even whether to weigh certain variables. All of this allows you to keep aspects of your dataset that may be relevant and hard to replicate otherwise.

Remember your minimal code:

R

krats_subset <- rodents %>%
  filter(species == c("ordii", "spectabilis"),
         sex == c("F", "M"))

table(krats_subset$sex, krats_subset$species)

OUTPUT


    ordii spectabilis
  F   350           0
  M     0         626

We now want to replace rodents with our new_rodents. Do we need to change anything else?

We actually still have ordii and spectabilis as species in our list, so we can keep it as is. Same for sex. So we’re all set!

R

new_subset <- new_rodents %>%
  filter(species == c("ordii", "spectabilis"),
         sex == c("F", "M"))

The code ran without any issues! But does it replicate our issue?

Take a step back to remind yourself of what you are looking for. What was the issue we had identified?

The number of rows we end up after the filer is lower than expected.

So what would we expect to see with this new dataset? Since it is nice and short, this makes it a lot easier to predict the outcome.

We are asking for the 2 ordii rows, both males, and the 1 spectabilis row, which is female.

R

table(new_subset$sex, new_subset$species)

OUTPUT

< table of extent 0 x 0 >

Instead we end up with nothing! Why aren’t we getting the rows we are asking for?

Maybe our table is just wrong, let’s look at the actual dataset we end up with

R

print(new_subset)

OUTPUT

[1] record_id species   sex
<0 rows> (or 0-length row.names)

Still nothing! What is going on?? Well, we certainly replicated our issue. Time to ask for help!

But wait, our dataset is now minimal and relevant, but is it reproducible (accessible outside your device)? Not yet. We created a subset of our original dataset rodents but this came from a file on our computer. We could share our csv file and add an upload code… but that’s not ideal and it makes it hard to share our problem on a community site. Remember, the more steps required, the less likely someone will want to help.

Thankfully, there is a nifty function dput() that can help us out. Let’s try it and see what happens.

R

dput(new_rodents)

OUTPUT

structure(list(record_id = c(2359L, 16335L, 9910L, 8278L, 12038L,
7862L, 9221L, 1335L, 9862L, 14979L, 11333L, 351L), species = c("merriami",
"albigula", "ordii", "ordii", "merriami", "megalotis", "albigula",
"spectabilis", "harrisi", "merriami", "spilosoma", "leucogaster"
), sex = c("M", "M", "M", "M", "F", "F", "F", "F", "", "", "",
"")), class = "data.frame", row.names = c(NA, -12L))

It spit out a hard-to-read but not excessively long chunk of code. This code, when run, will recreate our new_rodents dataset! We can also break it down and label it further to help the reader.

R

reprex_data <- structure(list(
  
# a unique identifier
record_id = c(2359L, 16335L, 9910L, 8278L, 12038L, 7862L, 9221L, 1335L, 9862L, 14979L, 11333L, 351L), 

# a list of species
species = c("merriami", "albigula", "ordii", "ordii", "merriami", "megalotis", "albigula", "spectabilis", "harrisi", "merriami", "spilosoma", "leucogaster"), 

# a list of sexes. Note: this includes some blanks!
sex = c("M", "M", "M", "M", "F", "F", "F", "F", "", "", "", "")),

class = "data.frame", row.names = c(NA, -12L))

print(reprex_data)

OUTPUT

   record_id     species sex
1       2359    merriami   M
2      16335    albigula   M
3       9910       ordii   M
4       8278       ordii   M
5      12038    merriami   F
6       7862   megalotis   F
7       9221    albigula   F
8       1335 spectabilis   F
9       9862     harrisi
10     14979    merriami
11     11333   spilosoma
12       351 leucogaster    

Ta-da! Now they can easily recreate our minimal dataset and use it to run the minimal code. However, was that really easier than creating a dataset from scratch?

And sure, you could just use dput() on your original dataset. It would work. But that wouldn’t be very considerate to those who are trying to help. Try it.

R

dput(rodents)

OUTPUT

structure(list(record_id = c(1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L,
9L, 10L, 11L, 12L, 13L, 14L, 15L, 16L, 17L, 18L, 19L, 20L, 21L,
22L, 23L, 24L, 25L, 26L, 27L, 28L, 29L, 30L, 31L, 32L, 33L, 34L,
35L, 36L, 37L, 38L, 39L, 40L, 41L, 42L, 43L, 44L, 45L, 46L, 47L,
48L, 49L, 50L, 51L, 52L, 53L, 54L, 55L, 56L, 57L, 58L, 59L, 60L,
61L, 62L, 63L, 64L, 65L, 66L, 67L, 68L, 69L, 70L, 71L, 72L, 73L,
74L, 75L, 76L, 77L, 78L, 79L, 80L, 81L, 82L, 83L, 84L, 85L, 86L,
87L, 88L, 89L, 90L, 91L, 92L, 93L, 94L, 95L, 96L, 97L, 98L, 99L,
100L, 101L, 102L, 103L, 104L, 105L, 106L, 107L, 108L, 109L, 110L,
111L, 112L, 113L, 114L, 115L, 116L, 117L, 118L, 119L, 120L, 121L,
122L, 123L, 124L, 125L, 126L, 127L, 128L, 129L, 130L, 131L, 132L,
133L, 134L, 135L, 136L, 137L, 138L, 139L, 140L, 141L, 142L, 143L,
144L, 145L, 146L, 147L, 148L, 149L, 150L, 151L, 152L, 153L, 154L,
155L, 156L, 157L, 158L, 159L, 160L, 161L, 162L, 163L, 164L, 165L,
166L, 167L, 168L, 169L, 170L, 171L, 172L, 173L, 174L, 175L, 176L,
177L, 178L, 179L, 180L, 181L, 182L, 183L, 184L, 185L, 186L, 187L,
188L, 189L, 190L, 191L, 192L, 193L, 194L, 195L, 196L, 197L, 198L,
199L, 200L, 201L, 202L, 203L, 204L, 205L, 206L, 207L, 208L, 209L,
210L, 211L, 212L, 213L, 214L, 215L, 216L, 217L, 218L, 219L, 220L,
221L, 222L, 223L, 224L, 225L, 226L, 227L, 228L, 229L, 230L, 231L,
232L, 233L, 234L, 235L, 236L, 237L, 238L, 239L, 240L, 241L, 242L,
243L, 244L, 245L, 246L, 247L, 248L, 249L, 250L, 251L, 252L, 253L,
254L, 255L, 256L, 257L, 258L, 259L, 260L, 261L, 262L, 263L, 264L,
265L, 266L, 267L, 268L, 269L, 270L, 271L, 272L, 273L, 274L, 275L,
276L, 277L, 278L, 279L, 280L, 281L, 282L, 283L, 284L, 285L, 286L,
287L, 288L, 289L, 290L, 291L, 292L, 293L, 294L, 295L, 296L, 297L,
298L, 299L, 300L, 301L, 302L, 303L, 304L, 305L, 306L, 307L, 308L,
309L, 310L, 311L, 312L, 313L, 314L, 315L, 316L, 317L, 318L, 319L,
320L, 321L, 322L, 323L, 327L, 328L, 329L, 330L, 331L, 332L, 333L,
334L, 335L, 336L, 337L, 338L, 339L, 340L, 341L, 342L, 343L, 344L,
345L, 346L, 347L, 348L, 349L, 350L, 351L, 352L, 353L, 354L, 355L,
356L, 357L, 358L, 359L, 360L, 361L, 362L, 363L, 364L, 365L, 366L,
367L, 368L, 369L, 370L, 371L, 372L, 373L, 374L, 375L, 376L, 377L,
378L, 379L, 380L, 381L, 382L, 383L, 384L, 385L, 386L, 387L, 388L,
389L, 390L, 391L, 392L, 393L, 394L, 395L, 396L, 397L, 398L, 399L,
400L, 404L, 405L, 406L, 407L, 408L, 409L, 410L, 411L, 412L, 413L,
414L, 415L, 420L, 421L, 422L, 423L, 424L, 425L, 426L, 427L, 428L,
429L, 430L, 431L, 432L, 433L, 434L, 435L, 436L, 437L, 438L, 439L,
440L, 441L, 442L, 443L, 444L, 445L, 446L, 447L, 448L, 449L, 450L,
451L, 452L, 453L, 454L, 460L, 461L, 462L, 463L, 464L, 465L, 466L,
467L, 468L, 469L, 470L, 471L, 472L, 473L, 474L, 475L, 476L, 477L,
478L, 479L, 480L, 481L, 482L, 483L, 484L, 485L, 486L, 487L, 488L,
489L, 490L, 491L, 492L, 493L, 494L, 495L, 496L, 497L, 498L, 499L,
500L, 501L, 502L, 504L, 505L, 506L, 507L, 508L, 509L, 510L, 511L,
512L, 513L, 514L, 515L, 516L, 517L, 518L, 519L, 520L, 521L, 522L,
523L, 524L, 525L, 526L, 527L, 528L, 529L, 530L, 531L, 532L, 533L,
534L, 537L, 538L, 539L, 540L, 541L, 542L, 543L, 544L, 545L, 546L,
547L, 548L, 549L, 550L, 551L, 552L, 553L, 554L, 555L, 556L, 557L,
558L, 559L, 560L, 561L, 564L, 565L, 566L, 567L, 568L, 569L, 570L,
571L, 572L, 573L, 574L, 575L, 576L, 577L, 578L, 579L, 580L, 584L,
585L, 586L, 587L, 588L, 589L, 590L, 591L, 592L, 593L, 594L, 595L,
596L, 597L, 598L, 599L, 600L, 601L, 602L, 603L, 604L, 607L, 608L,
609L, 610L, 611L, 612L, 613L, 614L, 615L, 616L, 617L, 618L, 619L,
620L, 621L, 622L, 623L, 624L, 625L, 626L, 627L, 628L, 629L, 630L,
631L, 633L, 635L, 636L, 637L, 638L, 639L, 640L, 641L, 642L, 643L,
644L, 645L, 646L, 647L, 648L, 649L, 650L, 651L, 652L, 653L, 654L,
655L, 656L, 657L, 658L, 659L, 660L, 661L, 662L, 663L, 664L, 665L,
666L, 667L, 668L, 669L, 670L, 671L, 672L, 673L, 674L, 677L, 678L,
679L, 680L, 681L, 682L, 683L, 684L, 685L, 686L, 687L, 688L, 689L,
690L, 691L, 692L, 693L, 694L, 695L, 696L, 697L, 698L, 699L, 700L,
701L, 702L, 703L, 704L, 705L, 706L, 707L, 708L, 710L, 711L, 712L,
713L, 714L, 715L, 716L, 717L, 718L, 719L, 720L, 721L, 722L, 723L,
724L, 725L, 726L, 729L, 731L, 732L, 733L, 734L, 735L, 736L, 737L,
738L, 739L, 740L, 741L, 742L, 743L, 744L, 745L, 746L, 747L, 748L,
749L, 750L, 751L, 752L, 753L, 754L, 755L, 756L, 757L, 758L, 759L,
760L, 761L, 762L, 763L, 764L, 765L, 766L, 767L, 768L, 770L, 771L,
772L, 773L, 774L, 775L, 776L, 777L, 778L, 780L, 781L, 782L, 783L,
784L, 785L, 786L, 787L, 788L, 789L, 790L, 791L, 792L, 793L, 794L,
795L, 796L, 797L, 798L, 799L, 800L, 801L, 802L, 803L, 804L, 805L,
806L, 807L, 808L, 809L, 810L, 814L, 815L, 816L, 817L, 818L, 819L,
820L, 821L, 822L, 823L, 824L, 825L, 826L, 827L, 828L, 829L, 830L,
833L, 834L, 835L, 836L, 837L, 838L, 839L, 840L, 841L, 842L, 843L,
844L, 845L, 846L, 847L, 848L, 849L, 850L, 851L, 852L, 853L, 854L,
855L, 856L, 857L, 859L, 860L, 861L, 862L, 863L, 864L, 865L, 866L,
867L, 868L, 869L, 870L, 871L, 872L, 873L, 874L, 875L, 876L, 877L,
880L, 881L, 882L, 883L, 884L, 885L, 886L, 887L, 888L, 889L, 890L,
891L, 892L, 893L, 894L, 895L, 896L, 897L, 898L, 899L, 900L, 901L,
902L, 903L, 904L, 905L, 906L, 907L, 908L, 909L, 910L, 911L, 912L,
913L, 914L, 915L, 916L, 917L, 918L, 919L, 920L, 921L, 922L, 923L,
924L, 925L, 926L, 927L, 928L, 929L, 930L, 931L, 932L, 933L, 934L,
937L, 938L, 939L, 940L, 941L, 942L, 943L, 944L, 945L, 946L, 947L,
948L, 949L, 950L, 951L, 952L, 953L, 954L, 955L, 956L, 957L, 958L,
959L, 960L, 961L, 962L, 963L, 964L, 965L, 966L, 967L, 968L, 969L,
970L, 971L, 972L, 973L, 974L, 975L, 976L, 977L, 978L, 979L, 980L,
981L, 982L, 987L, 988L, 989L, 990L, 991L, 992L, 993L, 994L, 995L,
996L, 997L, 998L, 999L, 1000L, 1001L, 1002L, 1003L, 1004L, 1005L,
1006L, 1007L, 1008L, 1009L, 1010L, 1011L, 1012L, 1013L, 1014L,
1015L, 1016L, 1017L, 1018L, 1019L, 1020L, 1021L, 1022L, 1023L,
1024L, 1025L, 1026L, 1027L, 1028L, 1029L, 1031L, 1032L, 1033L,
1034L, 1035L, 1036L, 1037L, 1038L, 1039L, 1040L, 1041L, 1042L,
1043L, 1044L, 1045L, 1046L, 1047L, 1048L, 1049L, 1050L, 1051L,
1052L, 1053L, 1054L, 1055L, 1056L, 1057L, 1058L, 1059L, 1060L,
1061L, 1062L, 1063L, 1064L, 1065L, 1066L, 1067L, 1068L, 1069L,
1070L, 1075L, 1076L, 1077L, 1078L, 1079L, 1080L, 1081L, 1082L,
1083L, 1084L, 1085L, 1086L, 1087L, 1088L, 1089L, 1090L, 1091L,
1092L, 1093L, 1094L, 1095L, 1096L, 1097L, 1098L, 1099L, 1100L,
1101L, 1102L, 1103L, 1104L, 1105L, 1106L, 1107L, 1108L, 1109L,
1110L, 1111L, 1112L, 1113L, 1114L, 1115L, 1116L, 1117L, 1118L,
1119L, 1120L, 1121L, 1122L, 1123L, 1124L, 1125L, 1126L, 1127L,
1128L, 1129L, 1130L, 1131L, 1132L, 1133L, 1134L, 1135L, 1136L,
1137L, 1138L, 1139L, 1140L, 1141L, 1142L, 1143L, 1144L, 1145L,
1146L, 1148L, 1149L, 1150L, 1151L, 1152L, 1153L, 1154L, 1155L,
1156L, 1157L, 1158L, 1159L, 1160L, 1161L, 1162L, 1163L, 1164L,
1165L, 1166L, 1167L, 1168L, 1169L, 1170L, 1171L, 1172L, 1173L,
1174L, 1175L, 1176L, 1177L, 1178L, 1179L, 1180L, 1181L, 1182L,
1183L, 1184L, 1185L, 1186L, 1187L, 1188L, 1189L, 1190L, 1191L,
1195L, 1196L, 1197L, 1198L, 1199L, 1200L, 1201L, 1202L, 1203L,
1204L, 1205L, 1206L, 1207L, 1208L, 1209L, 1210L, 1211L, 1212L,
1213L, 1214L, 1215L, 1216L, 1217L, 1218L, 1219L, 1220L, 1221L,
1222L, 1223L, 1224L, 1225L, 1226L, 1227L, 1228L, 1229L, 1230L,
1231L, 1232L, 1233L, 1234L, 1235L, 1236L, 1237L, 1238L, 1239L,
1240L, 1241L, 1242L, 1243L, 1244L, 1245L, 1246L, 1247L, 1250L,
1251L, 1252L, 1253L, 1254L, 1255L, 1256L, 1257L, 1258L, 1259L,
1260L, 1261L, 1262L, 1263L, 1264L, 1265L, 1266L, 1267L, 1268L,
1269L, 1270L, 1271L, 1272L, 1273L, 1274L, 1275L, 1276L, 1277L,
1278L, 1279L, 1280L, 1281L, 1282L, 1283L, 1284L, 1285L, 1286L,
1287L, 1288L, 1289L, 1290L, 1291L, 1292L, 1293L, 1294L, 1295L,
1296L, 1297L, 1298L, 1299L, 1300L, 1301L, 1302L, 1304L, 1305L,
1306L, 1307L, 1308L, 1309L, 1310L, 1311L, 1312L, 1313L, 1314L,
1315L, 1316L, 1317L, 1318L, 1319L, 1320L, 1321L, 1322L, 1323L,
1324L, 1325L, 1326L, 1327L, 1328L, 1329L, 1330L, 1331L, 1332L,
1333L, 1334L, 1335L, 1336L, 1337L, 1338L, 1339L, 1340L, 1341L,
1342L, 1343L, 1344L, 1345L, 1346L, 1348L, 1351L, 1352L, 1353L,
1354L, 1355L, 1356L, 1357L, 1358L, 1359L, 1360L, 1361L, 1362L,
1363L, 1364L, 1365L, 1366L, 1367L, 1368L, 1369L, 1370L, 1371L,
1372L, 1373L, 1374L, 1375L, 1376L, 1377L, 1378L, 1379L, 1380L,
1381L, 1382L, 1383L, 1384L, 1385L, 1386L, 1387L, 1388L, 1389L,
1390L, 1391L, 1392L, 1394L, 1395L, 1396L, 1397L, 1398L, 1399L,
1400L, 1401L, 1402L, 1403L, 1404L, 1405L, 1406L, 1407L, 1408L,
1409L, 1410L, 1411L, 1412L, 1413L, 1414L, 1415L, 1416L, 1417L,
1418L, 1419L, 1420L, 1421L, 1422L, 1423L, 1424L, 1425L, 1426L,
1427L, 1428L, 1429L, 1430L, 1431L, 1432L, 1433L, 1434L, 1435L,
1436L, 1439L, 1440L, 1441L, 1442L, 1443L, 1444L, 1445L, 1446L,
1447L, 1448L, 1449L, 1450L, 1451L, 1452L, 1453L, 1454L, 1455L,
1456L, 1457L, 1458L, 1459L, 1460L, 1461L, 1462L, 1463L, 1464L,
1465L, 1466L, 1467L, 1468L, 1469L, 1470L, 1471L, 1472L, 1473L,
1477L, 1478L, 1479L, 1480L, 1481L, 1482L, 1483L, 1484L, 1485L,
1486L, 1487L, 1488L, 1489L, 1490L, 1491L, 1492L, 1493L, 1494L,
1495L, 1496L, 1497L, 1498L, 1499L, 1500L, 1501L, 1502L, 1503L,
1504L, 1505L, 1506L, 1507L, 1508L, 1509L, 1510L, 1511L, 1512L,
1513L, 1514L, 1515L, 1516L, 1519L, 1520L, 1521L, 1522L, 1523L,
1524L, 1525L, 1526L, 1527L, 1528L, 1529L, 1530L, 1531L, 1532L,
1533L, 1534L, 1535L, 1536L, 1537L, 1538L, 1539L, 1540L, 1541L,
1542L, 1543L, 1544L, 1545L, 1546L, 1547L, 1548L, 1551L, 1552L,
1553L, 1554L, 1555L, 1556L, 1557L, 1558L, 1559L, 1560L, 1561L,
1562L, 1563L, 1564L, 1565L, 1566L, 1567L, 1573L, 1574L, 1575L,
1576L, 1577L, 1578L, 1579L, 1580L, 1581L, 1582L, 1583L, 1584L,
1585L, 1586L, 1587L, 1588L, 1589L, 1590L, 1591L, 1592L, 1593L,
1594L, 1595L, 1596L, 1597L, 1598L, 1599L, 1600L, 1601L, 1602L,
1603L, 1604L, 1605L, 1606L, 1607L, 1608L, 1609L, 1610L, 1611L,
1612L, 1613L, 1617L, 1618L, 1619L, 1620L, 1621L, 1622L, 1623L,
1624L, 1625L, 1626L, 1627L, 1628L, 1629L, 1630L, 1631L, 1632L,
1633L, 1634L, 1635L, 1636L, 1637L, 1638L, 1644L, 1645L, 1646L,
1647L, 1648L, 1649L, 1650L, 1651L, 1652L, 1653L, 1654L, 1655L,
1656L, 1657L, 1658L, 1659L, 1660L, 1661L, 1662L, 1663L, 1664L,
1665L, 1666L, 1667L, 1668L, 1669L, 1670L, 1671L, 1672L, 1673L,
1674L, 1675L, 1676L, 1677L, 1678L, 1679L, 1680L, 1681L, 1682L,
1683L, 1684L, 1685L, 1686L, 1687L, 1688L, 1689L, 1690L, 1691L,
1692L, 1693L, 1694L, 1695L, 1696L, 1697L, 1698L, 1699L, 1700L,
1701L, 1702L, 1703L, 1704L, 1705L, 1706L, 1707L, 1708L, 1709L,
1710L, 1711L, 1712L, 1713L, 1714L, 1715L, 1725L, 1726L, 1727L,
1728L, 1729L, 1730L, 1731L, 1732L, 1733L, 1734L, 1735L, 1736L,
1737L, 1738L, 1739L, 1740L, 1741L, 1742L, 1743L, 1744L, 1745L,
1746L, 1747L, 1748L, 1749L, 1750L, 1755L, 1756L, 1757L, 1758L,
1759L, 1760L, 1761L, 1762L, 1763L, 1764L, 1765L, 1766L, 1767L,
1768L, 1769L, 1770L, 1771L, 1772L, 1773L, 1774L, 1775L, 1776L,
1781L, 1782L, 1783L, 1784L, 1785L, 1786L, 1787L, 1788L, 1789L,
1790L, 1791L, 1792L, 1793L, 1794L, 1795L, 1796L, 1797L, 1798L,
1799L, 1800L, 1801L, 1802L, 1803L, 1804L, 1805L, 1806L, 1807L,
1808L, 1809L, 1810L, 1811L, 1812L, 1813L, 1814L, 1817L, 1818L,
1819L, 1820L, 1821L, 1822L, 1823L, 1824L, 1825L, 1826L, 1827L,
1828L, 1829L, 1830L, 1831L, 1832L, 1833L, 1834L, 1835L, 1836L,
1837L, 1838L, 1839L, 1840L, 1841L, 1842L, 1843L, 1844L, 1845L,
1846L, 1847L, 1853L, 1854L, 1855L, 1856L, 1857L, 1858L, 1859L,
1860L, 1861L, 1862L, 1863L, 1864L, 1865L, 1866L, 1867L, 1868L,
1869L, 1870L, 1871L, 1872L, 1873L, 1874L, 1875L, 1876L, 1877L,
1878L, 1880L, 1881L, 1882L, 1883L, 1884L, 1885L, 1886L, 1887L,
1888L, 1889L, 1890L, 1891L, 1892L, 1893L, 1894L, 1895L, 1896L,
1897L, 1898L, 1899L, 1900L, 1901L, 1902L, 1907L, 1908L, 1909L,
1910L, 1911L, 1912L, 1913L, 1914L, 1915L, 1916L, 1917L, 1918L,
1921L, 1922L, 1923L, 1924L, 1925L, 1926L, 1927L, 1928L, 1929L,
1930L, 1931L, 1932L, 1933L, 1934L, 1935L, 1936L, 1937L, 1938L,
1939L, 1940L, 1941L, 1942L, 1943L, 1945L, 1946L, 1947L, 1948L,
1949L, 1950L, 1951L, 1952L, 1953L, 1954L, 1955L, 1956L, 1957L,
1958L, 1959L, 1961L, 1962L, 1963L, 1964L, 1965L, 1966L, 1967L,
1968L, 1969L, 1970L, 1971L, 1972L, 1973L, 1974L, 1975L, 1978L,
1979L, 1980L, 1981L, 1982L, 1983L, 1984L, 1985L, 1986L, 1987L,
1988L, 1989L, 1990L, 1991L, 1992L, 1993L, 1996L, 1997L, 1998L,
1999L, 2000L, 2001L, 2002L, 2003L, 2004L, 2005L, 2006L, 2007L,
2008L, 2009L, 2010L, 2011L, 2012L, 2013L, 2014L, 2015L, 2016L,
2017L, 2018L, 2019L, 2020L, 2021L, 2022L, 2023L, 2024L, 2025L,
2026L, 2027L, 2028L, 2029L, 2030L, 2031L, 2032L, 2033L, 2034L,
2035L, 2036L, 2037L, 2038L, 2039L, 2040L, 2041L, 2044L, 2045L,
2046L, 2047L, 2048L, 2049L, 2050L, 2051L, 2052L, 2053L, 2054L,
2055L, 2056L, 2057L, 2058L, 2059L, 2060L, 2061L, 2062L, 2063L,
2064L, 2065L, 2066L, 2067L, 2068L, 2069L, 2070L, 2071L, 2074L,
2075L, 2076L, 2077L, 2078L, 2079L, 2080L, 2081L, 2082L, 2083L,
2084L, 2085L, 2086L, 2087L, 2088L, 2089L, 2090L, 2091L, 2092L,
2093L, 2094L, 2095L, 2096L, 2097L, 2098L, 2099L, 2100L, 2101L,
2102L, 2103L, 2104L, 2105L, 2106L, 2107L, 2108L, 2109L, 2112L,
2113L, 2114L, 2115L, 2116L, 2117L, 2118L, 2119L, 2120L, 2121L,
2122L, 2123L, 2124L, 2125L, 2126L, 2127L, 2128L, 2129L, 2130L,
2131L, 2132L, 2133L, 2134L, 2135L, 2136L, 2137L, 2140L, 2141L,
2142L, 2143L, 2144L, 2145L, 2146L, 2147L, 2148L, 2149L, 2150L,
2151L, 2152L, 2153L, 2154L, 2155L, 2156L, 2157L, 2158L, 2159L,
2160L, 2161L, 2162L, 2163L, 2164L, 2165L, 2166L, 2167L, 2168L,
2169L, 2170L, 2171L, 2172L, 2173L, 2174L, 2175L, 2176L, 2177L,
2178L, 2179L, 2180L, 2181L, 2182L, 2183L, 2184L, 2185L, 2186L,
2187L, 2188L, 2189L, 2190L, 2191L, 2193L, 2194L, 2195L, 2196L,
2197L, 2198L, 2199L, 2200L, 2201L, 2202L, 2203L, 2204L, 2205L,
2206L, 2207L, 2208L, 2209L, 2210L, 2211L, 2212L, 2213L, 2214L,
2215L, 2216L, 2217L, 2218L, 2219L, 2220L, 2221L, 2222L, 2223L,
2224L, 2225L, 2226L, 2227L, 2228L, 2229L, 2230L, 2231L, 2232L,
2233L, 2234L, 2235L, 2236L, 2237L, 2238L, 2239L, 2240L, 2241L,
2242L, 2243L, 2244L, 2245L, 2246L, 2247L, 2248L, 2249L, 2250L,
2251L, 2252L, 2253L, 2254L, 2255L, 2256L, 2257L, 2258L, 2259L,
2260L, 2261L, 2262L, 2263L, 2264L, 2265L, 2266L, 2267L, 2268L,
2271L, 2272L, 2273L, 2274L, 2275L, 2276L, 2277L, 2278L, 2279L,
2280L, 2281L, 2282L, 2283L, 2284L, 2285L, 2286L, 2287L, 2288L,
2289L, 2290L, 2291L, 2292L, 2293L, 2294L, 2295L, 2296L, 2297L,
2298L, 2299L, 2300L, 2301L, 2302L, 2303L, 2304L, 2305L, 2306L,
2307L, 2308L, 2309L, 2310L, 2311L, 2312L, 2313L, 2314L, 2315L,
2316L, 2317L, 2318L, 2319L, 2320L, 2321L, 2322L, 2323L, 2324L,
2325L, 2326L, 2327L, 2328L, 2329L, 2332L, 2333L, 2334L, 2335L,
2336L, 2337L, 2338L, 2339L, 2340L, 2341L, 2342L, 2343L, 2344L,
2345L, 2346L, 2347L, 2348L, 2349L, 2350L, 2351L, 2352L, 2353L,
2354L, 2355L, 2356L, 2357L, 2358L, 2359L, 2360L, 2361L, 2362L,
2363L, 2364L, 2365L, 2366L, 2367L, 2368L, 2369L, 2370L, 2371L,
2372L, 2373L, 2374L, 2375L, 2376L, 2377L, 2378L, 2379L, 2380L,
2381L, 2382L, 2383L, 2384L, 2385L, 2386L, 2387L, 2388L, 2389L,
2390L, 2391L, 2392L, 2393L, 2394L, 2395L, 2396L, 2397L, 2398L,
2399L, 2400L, 2401L, 2402L, 2403L, 2404L, 2405L, 2406L, 2407L,
2408L, 2409L, 2410L, 2411L, 2412L, 2413L, 2414L, 2415L, 2416L,
2417L, 2418L, 2419L, 2420L, 2421L, 2422L, 2423L, 2424L, 2425L,
2426L, 2427L, 2428L, 2429L, 2430L, 2431L, 2432L, 2433L, 2434L,
2435L, 2436L, 2437L, 2438L, 2439L, 2440L, 2441L, 2442L, 2443L,
2444L, 2445L, 2446L, 2447L, 2448L, 2449L, 2450L, 2452L, 2453L,
2454L, 2455L, 2456L, 2457L, 2458L, 2459L, 2460L, 2461L, 2462L,
2463L, 2464L, 2465L, 2466L, 2467L, 2468L, 2469L, 2470L, 2471L,
2472L, 2473L, 2474L, 2475L, 2476L, 2477L, 2478L, 2479L, 2480L,
2481L, 2482L, 2483L, 2484L, 2485L, 2486L, 2487L, 2488L, 2489L,
2490L, 2491L, 2492L, 2493L, 2494L, 2495L, 2496L, 2497L, 2498L,
2499L, 2500L, 2501L, 2502L, 2503L, 2504L, 2505L, 2506L, 2507L,
2508L, 2509L, 2510L, 2511L, 2512L, 2513L, 2514L, 2515L, 2516L,
2517L, 2518L, 2519L, 2520L, 2521L, 2522L, 2523L, 2524L, 2525L,
2526L, 2527L, 2528L, 2529L, 2530L, 2531L, 2532L, 2533L, 2534L,
2536L, 2537L, 2538L, 2539L, 2540L, 2541L, 2542L, 2543L, 2544L,
2545L, 2546L, 2547L, 2548L, 2549L, 2550L, 2551L, 2552L, 2553L,
2554L, 2555L, 2556L, 2557L, 2558L, 2559L, 2560L, 2561L, 2562L,
2563L, 2564L, 2565L, 2566L, 2567L, 2568L, 2569L, 2570L, 2571L,
2572L, 2573L, 2574L, 2575L, 2576L, 2577L, 2578L, 2579L, 2580L,
2581L, 2582L, 2583L, 2584L, 2585L, 2586L, 2587L, 2588L, 2589L,
2590L, 2591L, 2592L, 2593L, 2594L, 2595L, 2596L, 2597L, 2598L,
2599L, 2600L, 2601L, 2602L, 2603L, 2604L, 2605L, 2606L, 2607L,
2608L, 2609L, 2610L, 2611L, 2612L, 2613L, 2614L, 2615L, 2616L,
2617L, 2618L, 2619L, 2620L, 2621L, 2622L, 2623L, 2624L, 2625L,
2626L, 2627L, 2628L, 2629L, 2630L, 2631L, 2632L, 2633L, 2634L,
2635L, 2636L, 2637L, 2638L, 2639L, 2640L, 2641L, 2642L, 2643L,
2644L, 2645L, 2646L, 2647L, 2648L, 2649L, 2650L, 2651L, 2652L,
2653L, 2654L, 2655L, 2656L, 2657L, 2658L, 2659L, 2660L, 2661L,
2662L, 2663L, 2664L, 2665L, 2666L, 2667L, 2668L, 2669L, 2670L,
2671L, 2672L, 2673L, 2674L, 2675L, 2676L, 2677L, 2678L, 2679L,
2680L, 2681L, 2682L, 2683L, 2684L, 2685L, 2686L, 2687L, 2688L,
2689L, 2690L, 2691L, 2692L, 2693L, 2694L, 2695L, 2696L, 2697L,
2698L, 2699L, 2700L, 2701L, 2702L, 2703L, 2704L, 2705L, 2706L,
2707L, 2708L, 2709L, 2710L, 2711L, 2712L, 2713L, 2714L, 2715L,
2716L, 2717L, 2718L, 2719L, 2720L, 2721L, 2722L, 2723L, 2724L,
2725L, 2726L, 2727L, 2728L, 2729L, 2730L, 2731L, 2732L, 2733L,
2734L, 2735L, 2736L, 2737L, 2738L, 2739L, 2740L, 2741L, 2742L,
2743L, 2744L, 2745L, 2746L, 2747L, 2748L, 2749L, 2750L, 2751L,
2752L, 2753L, 2754L, 2755L, 2756L, 2757L, 2758L, 2759L, 2760L,
2761L, 2762L, 2763L, 2764L, 2765L, 2766L, 2767L, 2768L, 2769L,
2770L, 2771L, 2772L, 2773L, 2774L, 2775L, 2776L, 2777L, 2778L,
2779L, 2780L, 2781L, 2782L, 2783L, 2785L, 2786L, 2787L, 2788L,
2789L, 2790L, 2791L, 2792L, 2793L, 2794L, 2795L, 2796L, 2797L,
2798L, 2799L, 2800L, 2801L, 2802L, 2803L, 2804L, 2805L, 2806L,
2807L, 2808L, 2809L, 2810L, 2811L, 2812L, 2813L, 2814L, 2815L,
2816L, 2817L, 2818L, 2819L, 2820L, 2821L, 2822L, 2823L, 2824L,
2825L, 2826L, 2827L, 2828L, 2829L, 2830L, 2831L, 2832L, 2833L,
2834L, 2835L, 2836L, 2837L, 2838L, 2839L, 2840L, 2841L, 2842L,
2843L, 2844L, 2845L, 2846L, 2847L, 2848L, 2849L, 2850L, 2851L,
2852L, 2853L, 2854L, 2855L, 2856L, 2857L, 2858L, 2859L, 2860L,
2861L, 2862L, 2863L, 2864L, 2868L, 2869L, 2870L, 2871L, 2872L,
2873L, 2874L, 2875L, 2876L, 2877L, 2878L, 2879L, 2880L, 2881L,
2882L, 2883L, 2884L, 2885L, 2886L, 2887L, 2888L, 2889L, 2890L,
2891L, 2892L, 2893L, 2894L, 2895L, 2896L, 2897L, 2898L, 2899L,
2900L, 2901L, 2902L, 2903L, 2904L, 2905L, 2906L, 2907L, 2908L,
2909L, 2910L, 2911L, 2912L, 2913L, 2914L, 2915L, 2916L, 2917L,
2918L, 2919L, 2920L, 2921L, 2922L, 2923L, 2924L, 2925L, 2926L,
2927L, 2928L, 2929L, 2930L, 2931L, 2932L, 2933L, 2934L, 2935L,
2936L, 2937L, 2938L, 2939L, 2940L, 2941L, 2942L, 2943L, 2944L,
2945L, 2946L, 2947L, 2948L, 2949L, 2950L, 2951L, 2952L, 2953L,
2954L, 2955L, 2956L, 2961L, 2962L, 2963L, 2964L, 2965L, 2966L,
2967L, 2968L, 2969L, 2970L, 2971L, 2972L, 2973L, 2974L, 2975L,
2976L, 2977L, 2978L, 2979L, 2980L, 2981L, 2982L, 2983L, 2984L,
2985L, 2986L, 2987L, 2988L, 2989L, 2990L, 2991L, 2992L, 2993L,
2994L, 2995L, 2996L, 2997L, 2998L, 2999L, 3000L, 3001L, 3002L,
3003L, 3004L, 3005L, 3006L, 3007L, 3008L, 3009L, 3010L, 3011L,
3012L, 3013L, 3014L, 3015L, 3016L, 3017L, 3018L, 3019L, 3020L,
3021L, 3022L, 3023L, 3024L, 3025L, 3026L, 3027L, 3028L, 3029L,
3030L, 3031L, 3032L, 3033L, 3034L, 3035L, 3036L, 3037L, 3038L,
3039L, 3040L, 3041L, 3042L, 3043L, 3044L, 3045L, 3046L, 3047L,
3048L, 3049L, 3050L, 3051L, 3052L, 3053L, 3054L, 3055L, 3056L,
3057L, 3058L, 3059L, 3060L, 3061L, 3062L, 3063L, 3064L, 3065L,
3066L, 3067L, 3068L, 3069L, 3070L, 3071L, 3072L, 3073L, 3074L,
3075L, 3076L, 3077L, 3078L, 3079L, 3080L, 3082L, 3083L, 3084L,
3085L, 3086L, 3087L, 3088L, 3089L, 3090L, 3091L, 3092L, 3093L,
3094L, 3095L, 3096L, 3097L, 3098L, 3099L, 3100L, 3101L, 3102L,
3103L, 3104L, 3105L, 3106L, 3107L, 3108L, 3109L, 3110L, 3111L,
3112L, 3113L, 3114L, 3115L, 3116L, 3117L, 3118L, 3119L, 3120L,
3122L, 3123L, 3124L, 3125L, 3127L, 3128L, 3129L, 3130L, 3131L,
3132L, 3133L, 3134L, 3135L, 3136L, 3137L, 3138L, 3139L, 3140L,
3141L, 3142L, 3143L, 3144L, 3145L, 3147L, 3148L, 3149L, 3150L,
3151L, 3158L, 3159L, 3160L, 3161L, 3162L, 3163L, 3164L, 3165L,
3166L, 3167L, 3168L, 3169L, 3170L, 3171L, 3172L, 3173L, 3174L,
3175L, 3176L, 3177L, 3178L, 3179L, 3180L, 3181L, 3182L, 3183L,
3187L, 3188L, 3191L, 3192L, 3193L, 3194L, 3195L, 3196L, 3197L,
3198L, 3199L, 3201L, 3202L, 3203L, 3204L, 3205L, 3206L, 3207L,
3209L, 3210L, 3211L, 3212L, 3213L, 3216L, 3217L, 3218L, 3219L,
3220L, 3221L, 3222L, 3223L, 3224L, 3225L, 3226L, 3227L, 3228L,
3229L, 3230L, 3231L, 3232L, 3233L, 3234L, 3235L, 3236L, 3237L,
3238L, 3239L, 3240L, 3241L, 3242L, 3243L, 3244L, 3248L, 3249L,
3251L, 3252L, 3253L, 3254L, 3255L, 3256L, 3257L, 3258L, 3259L,
3260L, 3261L, 3262L, 3264L, 3265L, 3266L, 3267L, 3268L, 3269L,
3270L, 3271L, 3272L, 3273L, 3274L, 3275L, 3276L, 3278L, 3279L,
3280L, 3281L, 3282L, 3283L, 3284L, 3286L, 3287L, 3288L, 3289L,
3290L, 3292L, 3293L, 3294L, 3295L, 3296L, 3297L, 3298L, 3299L,
3300L, 3301L, 3302L, 3303L, 3304L, 3305L, 3307L, 3308L, 3309L,
3310L, 3311L, 3312L, 3313L, 3314L, 3315L, 3316L, 3318L, 3321L,
3322L, 3323L, 3324L, 3325L, 3328L, 3329L, 3330L, 3331L, 3332L,
3333L, 3334L, 3335L, 3337L, 3338L, 3339L, 3340L, 3341L, 3342L,
3343L, 3344L, 3345L, 3346L, 3347L, 3348L, 3349L, 3350L, 3351L,
3353L, 3354L, 3355L, 3356L, 3357L, 3358L, 3359L, 3360L, 3361L,
3362L, 3363L, 3367L, 3368L, 3369L, 3370L, 3371L, 3372L, 3373L,
3374L, 3375L, 3376L, 3377L, 3378L, 3379L, 3380L, 3381L, 3382L,
3383L, 3384L, 3385L, 3386L, 3387L, 3388L, 3389L, 3390L, 3391L,
3392L, 3393L, 3394L, 3395L, 3396L, 3397L, 3398L, 3399L, 3400L,
3401L, 3402L, 3403L, 3405L, 3406L, 3407L, 3408L, 3409L, 3410L,
3411L, 3412L, 3413L, 3414L, 3415L, 3416L, 3417L, 3418L, 3419L,
3420L, 3421L, 3422L, 3423L, 3424L, 3425L, 3426L, 3427L, 3428L,
3429L, 3430L, 3431L, 3432L, 3433L, 3434L, 3435L, 3436L, 3437L,
3438L, 3439L, 3440L, 3441L, 3442L, 3443L, 3444L, 3445L, 3446L,
3451L, 3452L, 3453L, 3454L, 3455L, 3456L, 3457L, 3458L, 3459L,
3460L, 3461L, 3462L, 3463L, 3464L, 3465L, 3466L, 3467L, 3468L,
3469L, 3470L, 3471L, 3472L, 3473L, 3474L, 3475L, 3476L, 3477L,
3478L, 3479L, 3480L, 3481L, 3482L, 3483L, 3484L, 3485L, 3486L,
3487L, 3488L, 3489L, 3490L, 3491L, 3492L, 3493L, 3494L, 3495L,
3496L, 3497L, 3498L, 3499L, 3500L, 3501L, 3502L, 3503L, 3504L,
3505L, 3506L, 3507L, 3508L, 3509L, 3510L, 3511L, 3512L, 3513L,
3514L, 3515L, 3516L, 3517L, 3518L, 3519L, 3520L, 3521L, 3522L,
3523L, 3524L, 3525L, 3526L, 3527L, 3528L, 3529L, 3530L, 3531L,
3532L, 3533L, 3534L, 3535L, 3536L, 3537L, 3538L, 3539L, 3540L,
3541L, 3542L, 3543L, 3544L, 3545L, 3546L, 3547L, 3548L, 3549L,
3550L, 3551L, 3552L, 3553L, 3554L, 3555L, 3556L, 3557L, 3558L,
3559L, 3560L, 3561L, 3562L, 3563L, 3564L, 3565L, 3566L, 3567L,
3568L, 3569L, 3570L, 3571L, 3572L, 3573L, 3574L, 3575L, 3576L,
3577L, 3578L, 3579L, 3580L, 3581L, 3582L, 3583L, 3584L, 3585L,
3587L, 3588L, 3589L, 3590L, 3591L, 3592L, 3593L, 3597L, 3598L,
3599L, 3600L, 3601L, 3602L, 3603L, 3604L, 3605L, 3606L, 3607L,
3608L, 3609L, 3610L, 3611L, 3612L, 3613L, 3614L, 3615L, 3616L,
3617L, 3618L, 3619L, 3620L, 3621L, 3622L, 3623L, 3624L, 3625L,
3626L, 3627L, 3628L, 3629L, 3630L, 3631L, 3632L, 3633L, 3634L,
3635L, 3636L, 3637L, 3638L, 3639L, 3640L, 3641L, 3642L, 3643L,
3644L, 3645L, 3646L, 3647L, 3648L, 3649L, 3650L, 3651L, 3652L,
3653L, 3654L, 3655L, 3656L, 3657L, 3658L, 3659L, 3660L, 3661L,
3662L, 3663L, 3664L, 3665L, 3666L, 3667L, 3668L, 3669L, 3670L,
3671L, 3672L, 3673L, 3674L, 3675L, 3676L, 3677L, 3678L, 3679L,
3680L, 3681L, 3682L, 3683L, 3684L, 3686L, 3687L, 3688L, 3689L,
3690L, 3691L, 3692L, 3693L, 3694L, 3695L, 3696L, 3697L, 3698L,
3699L, 3701L, 3703L, 3704L, 3707L, 3708L, 3709L, 3710L, 3711L,
3712L, 3713L, 3714L, 3715L, 3716L, 3718L, 3719L, 3720L, 3721L,
3723L, 3724L, 3725L, 3726L, 3727L, 3728L, 3729L, 3730L, 3734L,
3735L, 3736L, 3737L, 3738L, 3739L, 3740L, 3741L, 3742L, 3743L,
3744L, 3745L, 3746L, 3747L, 3748L, 3749L, 3750L, 3751L, 3752L,
3753L, 3754L, 3755L, 3756L, 3757L, 3758L, 3759L, 3760L, 3761L,
3762L, 3763L, 3764L, 3765L, 3766L, 3767L, 3768L, 3769L, 3770L,
3771L, 3772L, 3773L, 3774L, 3776L, 3777L, 3778L, 3779L, 3780L,
3781L, 3782L, 3783L, 3784L, 3785L, 3786L, 3787L, 3788L, 3789L,
3790L, 3791L, 3792L, 3793L, 3794L, 3795L, 3796L, 3797L, 3798L,
3799L, 3800L, 3801L, 3802L, 3803L, 3804L, 3805L, 3806L, 3807L,
3808L, 3809L, 3810L, 3811L, 3812L, 3813L, 3814L, 3815L, 3816L,
3817L, 3818L, 3819L, 3820L, 3821L, 3822L, 3823L, 3824L, 3825L,
3826L, 3827L, 3828L, 3829L, 3830L, 3831L, 3832L, 3833L, 3834L,
3835L, 3836L, 3837L, 3838L, 3839L, 3840L, 3841L, 3842L, 3843L,
3844L, 3845L, 3846L, 3847L, 3848L, 3849L, 3850L, 3851L, 3852L,
3853L, 3854L, 3855L, 3856L, 3857L, 3858L, 3863L, 3864L, 3865L,
3866L, 3867L, 3868L, 3869L, 3870L, 3871L, 3872L, 3873L, 3874L,
3875L, 3876L, 3877L, 3878L, 3879L, 3880L, 3881L, 3882L, 3883L,
3884L, 3885L, 3886L, 3887L, 3888L, 3889L, 3890L, 3891L, 3892L,
3893L, 3894L, 3895L, 3896L, 3897L, 3898L, 3899L, 3900L, 3901L,
3902L, 3903L, 3904L, 3905L, 3907L, 3908L, 3909L, 3910L, 3911L,
3912L, 3913L, 3914L, 3915L, 3916L, 3917L, 3918L, 3919L, 3920L,
3921L, 3922L, 3923L, 3924L, 3925L, 3926L, 3927L, 3928L, 3929L,
3930L, 3931L, 3932L, 3933L, 3934L, 3935L, 3936L, 3937L, 3938L,
3939L, 3940L, 3941L, 3942L, 3943L, 3944L, 3947L, 3948L, 3949L,
3950L, 3951L, 3952L, 3953L, 3954L, 3955L, 3956L, 3957L, 3958L,
3959L, 3960L, 3961L, 3962L, 3963L, 3964L, 3965L, 3966L, 3967L,
3968L, 3969L, 3970L, 3971L, 3972L, 3973L, 3974L, 3975L, 3976L,
3977L, 3978L, 3979L, 3980L, 3981L, 3982L, 3983L, 3984L, 3985L,
3986L, 3987L, 3988L, 3989L, 3990L, 3991L, 3992L, 3993L, 3994L,
3995L, 3996L, 3997L, 3998L, 3999L, 4000L, 4001L, 4002L, 4003L,
4004L, 4005L, 4006L, 4007L, 4008L, 4009L, 4010L, 4011L, 4012L,
4013L, 4014L, 4015L, 4016L, 4017L, 4018L, 4019L, 4020L, 4021L,
4022L, 4023L, 4024L, 4025L, 4026L, 4027L, 4028L, 4029L, 4030L,
4031L, 4032L, 4033L, 4034L, 4035L, 4036L, 4037L, 4038L, 4039L,
4040L, 4041L, 4042L, 4043L, 4044L, 4045L, 4046L, 4047L, 4048L,
4049L, 4050L, 4051L, 4052L, 4053L, 4054L, 4055L, 4056L, 4057L,
4058L, 4059L, 4060L, 4061L, 4062L, 4063L, 4064L, 4065L, 4066L,
4067L, 4068L, 4069L, 4070L, 4071L, 4072L, 4073L, 4074L, 4075L,
4076L, 4077L, 4078L, 4079L, 4080L, 4081L, 4082L, 4083L, 4084L,
4085L, 4086L, 4087L, 4088L, 4089L, 4090L, 4091L, 4092L, 4093L,
4094L, 4095L, 4096L, 4097L, 4098L, 4099L, 4100L, 4101L, 4102L,
4103L, 4104L, 4105L, 4106L, 4107L, 4108L, 4109L, 4110L, 4111L,
4112L, 4113L, 4114L, 4115L, 4116L, 4117L, 4118L, 4119L, 4120L,
4121L, 4122L, 4123L, 4124L, 4125L, 4126L, 4127L, 4128L, 4129L,
4130L, 4131L, 4132L, 4133L, 4134L, 4135L, 4136L, 4137L, 4138L,
4139L, 4140L, 4141L, 4142L, 4143L, 4144L, 4145L, 4146L, 4147L,
4148L, 4149L, 4150L, 4151L, 4152L, 4153L, 4154L, 4155L, 4156L,
4157L, 4158L, 4159L, 4160L, 4161L, 4162L, 4163L, 4164L, 4165L,
4166L, 4167L, 4168L, 4169L, 4170L, 4171L, 4172L, 4173L, 4174L,
4175L, 4176L, 4177L, 4178L, 4179L, 4180L, 4181L, 4182L, 4183L,
4184L, 4185L, 4186L, 4187L, 4188L, 4189L, 4190L, 4191L, 4192L,
4193L, 4194L, 4195L, 4196L, 4197L, 4198L, 4199L, 4200L, 4201L,
4202L, 4203L, 4204L, 4205L, 4206L, 4207L, 4208L, 4209L, 4210L,
4211L, 4212L, 4213L, 4214L, 4215L, 4216L, 4217L, 4218L, 4219L,
4220L, 4221L, 4222L, 4223L, 4224L, 4225L, 4226L, 4227L, 4228L,
4229L, 4230L, 4231L, 4232L, 4233L, 4234L, 4235L, 4236L, 4237L,
4238L, 4239L, 4240L, 4241L, 4242L, 4243L, 4244L, 4245L, 4246L,
4247L, 4248L, 4249L, 4250L, 4251L, 4252L, 4253L, 4254L, 4255L,
4256L, 4257L, 4258L, 4259L, 4260L, 4261L, 4262L, 4263L, 4264L,
4265L, 4266L, 4267L, 4268L, 4269L, 4270L, 4271L, 4272L, 4273L,
4274L, 4275L, 4276L, 4277L, 4278L, 4279L, 4280L, 4281L, 4282L,
4283L, 4284L, 4285L, 4286L, 4287L, 4288L, 4289L, 4290L, 4291L,
4292L, 4293L, 4294L, 4295L, 4296L, 4297L, 4298L, 4299L, 4300L,
4301L, 4302L, 4303L, 4304L, 4305L, 4306L, 4307L, 4308L, 4309L,
4310L, 4311L, 4312L, 4313L, 4314L, 4315L, 4316L, 4317L, 4318L,
4319L, 4320L, 4321L, 4322L, 4323L, 4324L, 4325L, 4326L, 4327L,
4328L, 4329L, 4330L, 4331L, 4332L, 4333L, 4334L, 4335L, 4336L,
4337L, 4338L, 4339L, 4340L, 4341L, 4342L, 4343L, 4344L, 4345L,
4346L, 4347L, 4348L, 4349L, 4350L, 4351L, 4352L, 4356L, 4357L,
4358L, 4359L, 4360L, 4362L, 4363L, 4365L, 4366L, 4368L, 4369L,
4371L, 4372L, 4373L, 4374L, 4375L, 4376L, 4377L, 4378L, 4379L,
4380L, 4381L, 4382L, 4384L, 4385L, 4386L, 4387L, 4388L, 4389L,
4390L, 4391L, 4392L, 4393L, 4394L, 4395L, 4396L, 4397L, 4398L,
4399L, 4400L, 4401L, 4402L, 4403L, 4404L, 4405L, 4407L, 4408L,
4409L, 4410L, 4411L, 4414L, 4415L, 4416L, 4417L, 4418L, 4419L,
4420L, 4421L, 4422L, 4423L, 4424L, 4425L, 4426L, 4427L, 4428L,
4429L, 4430L, 4431L, 4432L, 4433L, 4434L, 4435L, 4436L, 4437L,
4438L, 4439L, 4440L, 4441L, 4442L, 4443L, 4444L, 4445L, 4446L,
4447L, 4448L, 4449L, 4450L, 4451L, 4452L, 4453L, 4454L, 4455L,
4456L, 4457L, 4458L, 4459L, 4460L, 4461L, 4462L, 4463L, 4464L,
4465L, 4466L, 4467L, 4468L, 4469L, 4470L, 4471L, 4472L, 4473L,
4474L, 4475L, 4476L, 4478L, 4479L, 4480L, 4481L, 4482L, 4483L,
4484L, 4485L, 4486L, 4487L, 4488L, 4489L, 4490L, 4491L, 4492L,
4493L, 4494L, 4495L, 4496L, 4497L, 4498L, 4500L, 4501L, 4502L,
4503L, 4504L, 4505L, 4506L, 4507L, 4508L, 4510L, 4511L, 4512L,
4513L, 4514L, 4515L, 4516L, 4517L, 4518L, 4519L, 4520L, 4521L,
4522L, 4523L, 4524L, 4525L, 4526L, 4527L, 4528L, 4529L, 4530L,
4531L, 4532L, 4533L, 4534L, 4535L, 4536L, 4537L, 4538L, 4539L,
4540L, 4541L, 4542L, 4544L, 4545L, 4546L, 4547L, 4548L, 4549L,
4550L, 4556L, 4557L, 4558L, 4559L, 4560L, 4561L, 4562L, 4563L,
4564L, 4565L, 4566L, 4567L, 4568L, 4569L, 4570L, 4571L, 4572L,
4573L, 4574L, 4575L, 4576L, 4577L, 4578L, 4579L, 4580L, 4581L,
4582L, 4583L, 4584L, 4585L, 4586L, 4587L, 4588L, 4589L, 4590L,
4591L, 4592L, 4593L, 4594L, 4595L, 4597L, 4598L, 4599L, 4600L,
4601L, 4602L, 4603L, 4604L, 4605L, 4607L, 4608L, 4609L, 4610L,
4611L, 4612L, 4613L, 4614L, 4615L, 4616L, 4617L, 4618L, 4619L,
4620L, 4621L, 4622L, 4623L, 4624L, 4625L, 4626L, 4627L, 4628L,
4629L, 4630L, 4631L, 4632L, 4633L, 4634L, 4635L, 4636L, 4637L,
4638L, 4639L, 4640L, 4641L, 4642L, 4643L, 4644L, 4648L, 4649L,
4650L, 4651L, 4652L, 4653L, 4654L, 4655L, 4656L, 4657L, 4658L,
4659L, 4660L, 4661L, 4662L, 4663L, 4664L, 4665L, 4666L, 4667L,
4668L, 4669L, 4670L, 4671L, 4672L, 4673L, 4674L, 4675L, 4676L,
4677L, 4678L, 4679L, 4680L, 4681L, 4682L, 4683L, 4684L, 4685L,
4686L, 4687L, 4688L, 4691L, 4692L, 4693L, 4694L, 4695L, 4696L,
4697L, 4698L, 4699L, 4700L, 4701L, 4702L, 4703L, 4704L, 4705L,
4706L, 4708L, 4709L, 4710L, 4711L, 4712L, 4713L, 4714L, 4718L,
4719L, 4720L, 4721L, 4722L, 4723L, 4724L, 4725L, 4726L, 4727L,
4728L, 4729L, 4730L, 4731L, 4732L, 4733L, 4734L, 4735L, 4736L,
4737L, 4738L, 4739L, 4740L, 4741L, 4742L, 4744L, 4745L, 4746L,
4747L, 4748L, 4749L, 4750L, 4751L, 4756L, 4757L, 4758L, 4759L,
4760L, 4761L, 4762L, 4763L, 4764L, 4765L, 4766L, 4767L, 4768L,
4769L, 4770L, 4771L, 4772L, 4773L, 4774L, 4775L, 4776L, 4777L,
4778L, 4779L, 4780L, 4781L, 4782L, 4783L, 4784L, 4786L, 4790L,
4791L, 4792L, 4793L, 4794L, 4795L, 4796L, 4797L, 4798L, 4799L,
4800L, 4801L, 4802L, 4803L, 4809L, 4810L, 4811L, 4812L, 4813L,
4814L, 4815L, 4816L, 4817L, 4818L, 4819L, 4820L, 4822L, 4823L,
4824L, 4825L, 4826L, 4827L, 4828L, 4829L, 4830L, 4831L, 4832L,
4834L, 4835L, 4836L, 4837L, 4838L, 4839L, 4840L, 4841L, 4842L,
4843L, 4844L, 4845L, 4846L, 4847L, 4848L, 4849L, 4850L, 4851L,
4852L, 4853L, 4854L, 4856L, 4857L, 4858L, 4859L, 4860L, 4861L,
4862L, 4863L, 4864L, 4865L, 4869L, 4870L, 4871L, 4872L, 4873L,
4874L, 4875L, 4876L, 4877L, 4878L, 4879L, 4880L, 4881L, 4882L,
4883L, 4884L, 4885L, 4886L, 4887L, 4888L, 4889L, 4890L, 4891L,
4892L, 4893L, 4894L, 4895L, 4896L, 4897L, 4898L, 4899L, 4900L,
4901L, 4902L, 4903L, 4904L, 4905L, 4906L, 4911L, 4912L, 4913L,
4914L, 4915L, 4916L, 4917L, 4918L, 4919L, 4920L, 4921L, 4922L,
4923L, 4924L, 4925L, 4926L, 4927L, 4928L, 4929L, 4930L, 4931L,
4932L, 4933L, 4934L, 4935L, 4936L, 4937L, 4938L, 4939L, 4940L,
4941L, 4942L, 4943L, 4944L, 4945L, 4946L, 4947L, 4948L, 4949L,
4950L, 4951L, 4952L, 4953L, 4954L, 4955L, 4956L, 4957L, 4958L,
4959L, 4960L, 4961L, 4962L, 4963L, 4964L, 4965L, 4966L, 4967L,
4968L, 4969L, 4970L, 4971L, 4972L, 4973L, 4974L, 4975L, 4976L,
4977L, 4978L, 4979L, 4980L, 4981L, 4982L, 4983L, 4984L, 4985L,
4986L, 4987L, 4988L, 4989L, 4990L, 4991L, 4992L, 4993L, 4994L,
4995L, 4996L, 4997L, 4998L, 4999L, 5000L, 5001L, 5002L, 5003L,
5004L, 5005L, 5006L, 5007L, 5008L, 5013L, 5014L, 5015L, 5016L,
5017L, 5018L, 5019L, 5020L, 5021L, 5022L, 5023L, 5024L, 5025L,
5026L, 5027L, 5028L, 5029L, 5030L, 5031L, 5032L, 5033L, 5034L,
5035L, 5036L, 5037L, 5038L, 5039L, 5040L, 5041L, 5042L, 5043L,
5044L, 5045L, 5046L, 5047L, 5048L, 5049L, 5050L, 5051L, 5052L,
5053L, 5054L, 5055L, 5056L, 5057L, 5058L, 5059L, 5060L, 5061L,
5062L, 5063L, 5064L, 5065L, 5066L, 5067L, 5068L, 5069L, 5070L,
5071L, 5072L, 5073L, 5074L, 5075L, 5076L, 5077L, 5078L, 5079L,
5080L, 5081L, 5082L, 5083L, 5084L, 5085L, 5086L, 5087L, 5088L,
5089L, 5090L, 5091L, 5092L, 5093L, 5094L, 5095L, 5096L, 5097L,
5098L, 5099L, 5100L, 5101L, 5102L, 5103L, 5104L, 5105L, 5106L,
5107L, 5108L, 5109L, 5110L, 5111L, 5114L, 5115L, 5116L, 5117L,
5118L, 5119L, 5120L, 5121L, 5122L, 5123L, 5124L, 5125L, 5126L,
5127L, 5128L, 5129L, 5130L, 5131L, 5132L, 5133L, 5134L, 5135L,
5136L, 5137L, 5138L, 5139L, 5140L, 5141L, 5142L, 5143L, 5144L,
5145L, 5146L, 5147L, 5148L, 5149L, 5150L, 5151L, 5152L, 5153L,
5154L, 5155L, 5156L, 5157L, 5158L, 5159L, 5160L, 5161L, 5162L,
5163L, 5164L, 5165L, 5166L, 5167L, 5168L, 5169L, 5170L, 5171L,
5172L, 5173L, 5174L, 5175L, 5176L, 5177L, 5178L, 5179L, 5180L,
5181L, 5182L, 5183L, 5184L, 5185L, 5186L, 5187L, 5188L, 5189L,
5190L, 5191L, 5192L, 5193L, 5194L, 5195L, 5196L, 5197L, 5198L,
5199L, 5200L, 5201L, 5202L, 5205L, 5206L, 5207L, 5208L, 5209L,
5210L, 5211L, 5212L, 5213L, 5214L, 5215L, 5216L, 5217L, 5218L,
5219L, 5221L, 5223L, 5224L, 5225L, 5226L, 5227L, 5228L, 5230L,
5231L, 5232L, 5233L, 5234L, 5235L, 5236L, 5237L, 5238L, 5239L,
5240L, 5241L, 5242L, 5243L, 5245L, 5246L, 5247L, 5248L, 5249L,
5250L, 5251L, 5252L, 5253L, 5254L, 5255L, 5257L, 5258L, 5259L,
5260L, 5261L, 5262L, 5263L, 5264L, 5265L, 5266L, 5268L, 5269L,
5270L, 5271L, 5272L, 5273L, 5274L, 5275L, 5276L, 5277L, 5278L,
5279L, 5280L, 5281L, 5282L, 5283L, 5284L, 5285L, 5286L, 5287L,
5288L, 5289L, 5290L, 5291L, 5292L, 5293L, 5294L, 5295L, 5296L,
5297L, 5298L, 5299L, 5300L, 5301L, 5303L, 5304L, 5305L, 5306L,
5307L, 5308L, 5309L, 5311L, 5312L, 5314L, 5315L, 5316L, 5317L,
5318L, 5319L, 5320L, 5321L, 5322L, 5323L, 5324L, 5325L, 5327L,
5328L, 5329L, 5330L, 5331L, 5332L, 5333L, 5334L, 5335L, 5336L,
5337L, 5338L, 5339L, 5340L, 5341L, 5342L, 5343L, 5344L, 5345L,
5346L, 5347L, 5348L, 5349L, 5350L, 5351L, 5352L, 5353L, 5354L,
5355L, 5356L, 5357L, 5358L, 5359L, 5360L, 5361L, 5362L, 5363L,
5364L, 5365L, 5366L, 5367L, 5368L, 5369L, 5370L, 5371L, 5372L,
5373L, 5374L, 5375L, 5376L, 5377L, 5378L, 5379L, 5380L, 5381L,
5382L, 5383L, 5384L, 5385L, 5386L, 5388L, 5389L, 5390L, 5391L,
5392L, 5393L, 5394L, 5395L, 5396L, 5397L, 5398L, 5399L, 5400L,
5401L, 5402L, 5403L, 5404L, 5405L, 5406L, 5407L, 5408L, 5409L,
5410L, 5411L, 5412L, 5413L, 5414L, 5415L, 5416L, 5417L, 5418L,
5419L, 5420L, 5421L, 5422L, 5423L, 5424L, 5425L, 5426L, 5427L,
5428L, 5429L, 5430L, 5431L, 5432L, 5433L, 5434L, 5435L, 5436L,
5437L, 5438L, 5439L, 5440L, 5441L, 5442L, 5443L, 5444L, 5445L,
5446L, 5447L, 5448L, 5449L, 5450L, 5451L, 5452L, 5453L, 5454L,
5455L, 5456L, 5457L, 5458L, 5459L, 5460L, 5461L, 5462L, 5463L,
5464L, 5465L, 5466L, 5467L, 5468L, 5469L, 5470L, 5471L, 5472L,
5473L, 5474L, 5475L, 5476L, 5477L, 5478L, 5479L, 5480L, 5481L,
5482L, 5483L, 5484L, 5485L, 5486L, 5487L, 5489L, 5490L, 5491L,
5492L, 5493L, 5494L, 5495L, 5497L, 5498L, 5499L, 5500L, 5501L,
5502L, 5503L, 5504L, 5507L, 5508L, 5509L, 5510L, 5511L, 5512L,
5513L, 5514L, 5515L, 5516L, 5517L, 5518L, 5519L, 5520L, 5521L,
5522L, 5523L, 5524L, 5525L, 5526L, 5527L, 5528L, 5530L, 5531L,
5532L, 5533L, 5534L, 5536L, 5537L, 5538L, 5539L, 5540L, 5541L,
5542L, 5543L, 5544L, 5545L, 5546L, 5547L, 5548L, 5549L, 5551L,
5552L, 5553L, 5554L, 5555L, 5556L, 5557L, 5558L, 5559L, 5560L,
5561L, 5562L, 5563L, 5564L, 5565L, 5566L, 5567L, 5569L, 5570L,
5571L, 5572L, 5573L, 5574L, 5575L, 5576L, 5577L, 5578L, 5579L,
5580L, 5581L, 5582L, 5583L, 5584L, 5585L, 5586L, 5587L, 5588L,
5589L, 5590L, 5591L, 5592L, 5593L, 5594L, 5595L, 5596L, 5597L,
5598L, 5599L, 5600L, 5601L, 5602L, 5603L, 5604L, 5605L, 5606L,
5607L, 5608L, 5609L, 5610L, 5611L, 5612L, 5613L, 5614L, 5615L,
5616L, 5617L, 5618L, 5619L, 5620L, 5621L, 5622L, 5623L, 5624L,
5625L, 5626L, 5627L, 5628L, 5629L, 5630L, 5631L, 5632L, 5633L,
5634L, 5635L, 5636L, 5637L, 5638L, 5639L, 5640L, 5641L, 5642L,
5644L, 5645L, 5646L, 5647L, 5648L, 5649L, 5650L, 5651L, 5652L,
5653L, 5654L, 5656L, 5657L, 5658L, 5659L, 5660L, 5661L, 5662L,
5663L, 5664L, 5665L, 5666L, 5667L, 5668L, 5669L, 5670L, 5671L,
5672L, 5673L, 5674L, 5675L, 5676L, 5677L, 5678L, 5679L, 5680L,
5681L, 5682L, 5683L, 5684L, 5685L, 5686L, 5688L, 5690L, 5691L,
5692L, 5693L, 5694L, 5695L, 5696L, 5697L, 5698L, 5699L, 5700L,
5701L, 5702L, 5703L, 5704L, 5705L, 5706L, 5707L, 5708L, 5709L,
5710L, 5711L, 5712L, 5713L, 5714L, 5715L, 5716L, 5717L, 5718L,
5719L, 5720L, 5721L, 5722L, 5723L, 5724L, 5725L, 5726L, 5727L,
5728L, 5729L, 5730L, 5731L, 5733L, 5734L, 5735L, 5736L, 5737L,
5738L, 5739L, 5740L, 5742L, 5743L, 5744L, 5745L, 5746L, 5747L,
5748L, 5749L, 5750L, 5751L, 5752L, 5753L, 5755L, 5756L, 5757L,
5758L, 5760L, 5761L, 5762L, 5763L, 5764L, 5765L, 5766L, 5767L,
5768L, 5769L, 5770L, 5771L, 5772L, 5773L, 5774L, 5775L, 5776L,
5777L, 5778L, 5780L, 5781L, 5782L, 5783L, 5785L, 5786L, 5787L,
5788L, 5789L, 5790L, 5791L, 5792L, 5793L, 5794L, 5795L, 5797L,
5798L, 5799L, 5800L, 5801L, 5802L, 5803L, 5804L, 5805L, 5806L,
5807L, 5808L, 5809L, 5810L, 5811L, 5812L, 5813L, 5814L, 5815L,
5816L, 5817L, 5818L, 5819L, 5820L, 5822L, 5823L, 5824L, 5825L,
5826L, 5827L, 5828L, 5829L, 5830L, 5831L, 5832L, 5833L, 5834L,
5835L, 5836L, 5837L, 5838L, 5839L, 5840L, 5841L, 5842L, 5843L,
5844L, 5845L, 5846L, 5847L, 5848L, 5849L, 5850L, 5851L, 5852L,
5853L, 5854L, 5855L, 5856L, 5857L, 5858L, 5859L, 5860L, 5861L,
5862L, 5863L, 5864L, 5865L, 5866L, 5867L, 5868L, 5869L, 5870L,
5871L, 5872L, 5873L, 5874L, 5875L, 5876L, 5877L, 5878L, 5879L,
5880L, 5881L, 5882L, 5883L, 5884L, 5885L, 5886L, 5887L, 5888L,
5889L, 5890L, 5891L, 5892L, 5893L, 5894L, 5895L, 5896L, 5897L,
5898L, 5900L, 5901L, 5902L, 5903L, 5904L, 5905L, 5906L, 5907L,
5908L, 5912L, 5913L, 5914L, 5915L, 5916L, 5917L, 5918L, 5919L,
5920L, 5921L, 5922L, 5923L, 5924L, 5925L, 5926L, 5927L, 5928L,
5929L, 5930L, 5931L, 5932L, 5933L, 5934L, 5935L, 5936L, 5937L,
5938L, 5939L, 5940L, 5941L, 5942L, 5943L, 5944L, 5945L, 5946L,
5947L, 5948L, 5949L, 5950L, 5951L, 5952L, 5953L, 5954L, 5955L,
5956L, 5957L, 5958L, 5959L, 5960L, 5961L, 5962L, 5963L, 5964L,
5965L, 5966L, 5967L, 5968L, 5969L, 5970L, 5971L, 5972L, 5973L,
5974L, 5975L, 5976L, 5977L, 5978L, 5979L, 5980L, 5981L, 5982L,
5983L, 5984L, 5985L, 5986L, 5987L, 5988L, 5989L, 5990L, 5991L,
5992L, 5993L, 5994L, 5995L, 5996L, 5997L, 5998L, 5999L, 6000L,
6001L, 6002L, 6003L, 6004L, 6005L, 6006L, 6007L, 6008L, 6009L,
6010L, 6011L, 6012L, 6013L, 6014L, 6015L, 6016L, 6017L, 6018L,
6019L, 6020L, 6021L, 6022L, 6023L, 6024L, 6025L, 6026L, 6027L,
6028L, 6029L, 6030L, 6031L, 6032L, 6033L, 6034L, 6035L, 6036L,
6037L, 6038L, 6039L, 6040L, 6041L, 6042L, 6043L, 6044L, 6045L,
6046L, 6047L, 6048L, 6049L, 6050L, 6052L, 6053L, 6054L, 6055L,
6056L, 6057L, 6058L, 6059L, 6060L, 6061L, 6062L, 6063L, 6064L,
6065L, 6066L, 6067L, 6068L, 6069L, 6070L, 6071L, 6072L, 6073L,
6074L, 6075L, 6076L, 6077L, 6078L, 6079L, 6080L, 6081L, 6082L,
6083L, 6084L, 6085L, 6086L, 6087L, 6088L, 6089L, 6090L, 6091L,
6092L, 6093L, 6094L, 6095L, 6096L, 6097L, 6098L, 6100L, 6101L,
6102L, 6103L, 6104L, 6105L, 6106L, 6107L, 6108L, 6109L, 6110L,
6111L, 6112L, 6113L, 6114L, 6115L, 6116L, 6117L, 6118L, 6119L,
6120L, 6121L, 6122L, 6123L, 6124L, 6125L, 6126L, 6127L, 6128L,
6129L, 6130L, 6131L, 6132L, 6133L, 6134L, 6135L, 6136L, 6137L,
6138L, 6139L, 6140L, 6141L, 6142L, 6143L, 6144L, 6145L, 6146L,
6147L, 6148L, 6149L, 6150L, 6151L, 6152L, 6153L, 6154L, 6155L,
6156L, 6157L, 6158L, 6159L, 6160L, 6161L, 6162L, 6163L, 6164L,
6165L, 6166L, 6167L, 6168L, 6169L, 6170L, 6171L, 6172L, 6173L,
6174L, 6175L, 6176L, 6177L, 6178L, 6179L, 6180L, 6181L, 6182L,
6183L, 6184L, 6186L, 6187L, 6188L, 6189L, 6190L, 6191L, 6192L,
6193L, 6194L, 6195L, 6196L, 6197L, 6198L, 6199L, 6200L, 6201L,
6202L, 6203L, 6204L, 6205L, 6206L, 6207L, 6208L, 6209L, 6210L,
6211L, 6212L, 6214L, 6215L, 6216L, 6217L, 6218L, 6219L, 6220L,
6222L, 6223L, 6224L, 6225L, 6226L, 6227L, 6228L, 6229L, 6230L,
6231L, 6232L, 6233L, 6234L, 6235L, 6236L, 6237L, 6238L, 6239L,
6240L, 6241L, 6242L, 6243L, 6244L, 6245L, 6246L, 6247L, 6248L,
6249L, 6250L, 6251L, 6252L, 6253L, 6254L, 6255L, 6256L, 6257L,
6258L, 6259L, 6260L, 6261L, 6262L, 6263L, 6264L, 6265L, 6266L,
6267L, 6268L, 6269L, 6270L, 6271L, 6272L, 6273L, 6274L, 6275L,
6276L, 6277L, 6278L, 6279L, 6280L, 6281L, 6282L, 6283L, 6284L,
6285L, 6286L, 6287L, 6288L, 6289L, 6290L, 6291L, 6292L, 6293L,
6295L, 6296L, 6297L, 6298L, 6299L, 6300L, 6301L, 6302L, 6303L,
6304L, 6305L, 6306L, 6307L, 6308L, 6309L, 6310L, 6311L, 6312L,
6313L, 6314L, 6315L, 6316L, 6317L, 6318L, 6319L, 6320L, 6321L,
6322L, 6324L, 6325L, 6326L, 6327L, 6328L, 6329L, 6330L, 6331L,
6332L, 6333L, 6334L, 6335L, 6336L, 6337L, 6338L, 6339L, 6340L,
6341L, 6342L, 6343L, 6344L, 6345L, 6346L, 6347L, 6348L, 6349L,
6350L, 6351L, 6352L, 6353L, 6354L, 6355L, 6356L, 6357L, 6358L,
6359L, 6361L, 6362L, 6363L, 6364L, 6365L, 6367L, 6369L, 6371L,
6372L, 6373L, 6374L, 6375L, 6376L, 6378L, 6379L, 6380L, 6381L,
6383L, 6384L, 6385L, 6386L, 6387L, 6388L, 6389L, 6390L, 6391L,
6392L, 6393L, 6394L, 6395L, 6396L, 6397L, 6399L, 6400L, 6401L,
6402L, 6403L, 6405L, 6406L, 6408L, 6410L, 6411L, 6412L, 6413L,
6414L, 6416L, 6417L, 6418L, 6419L, 6420L, 6421L, 6422L, 6423L,
6424L, 6425L, 6426L, 6427L, 6428L, 6430L, 6431L, 6432L, 6433L,
6434L, 6435L, 6436L, 6438L, 6439L, 6440L, 6441L, 6442L, 6443L,
6444L, 6445L, 6446L, 6447L, 6448L, 6449L, 6450L, 6451L, 6452L,
6453L, 6454L, 6455L, 6456L, 6457L, 6458L, 6459L, 6460L, 6461L,
6462L, 6463L, 6464L, 6465L, 6467L, 6468L, 6469L, 6470L, 6471L,
6472L, 6473L, 6474L, 6475L, 6476L, 6477L, 6478L, 6479L, 6480L,
6481L, 6482L, 6483L, 6484L, 6485L, 6486L, 6487L, 6488L, 6489L,
6490L, 6491L, 6493L, 6494L, 6495L, 6496L, 6497L, 6498L, 6499L,
6500L, 6501L, 6502L, 6503L, 6504L, 6505L, 6506L, 6507L, 6508L,
6509L, 6510L, 6511L, 6512L, 6513L, 6514L, 6515L, 6516L, 6517L,
6518L, 6519L, 6520L, 6521L, 6522L, 6523L, 6524L, 6525L, 6526L,
6527L, 6528L, 6529L, 6530L, 6532L, 6533L, 6534L, 6535L, 6536L,
6537L, 6538L, 6539L, 6541L, 6542L, 6543L, 6544L, 6546L, 6547L,
6548L, 6549L, 6550L, 6551L, 6552L, 6553L, 6554L, 6555L, 6556L,
6557L, 6558L, 6559L, 6560L, 6561L, 6562L, 6563L, 6564L, 6565L,
6566L, 6568L, 6569L, 6570L, 6571L, 6572L, 6573L, 6574L, 6575L,
6576L, 6577L, 6578L, 6579L, 6581L, 6582L, 6583L, 6585L, 6586L,
6587L, 6588L, 6589L, 6590L, 6591L, 6592L, 6593L, 6594L, 6595L,
6596L, 6597L, 6598L, 6599L, 6600L, 6603L, 6604L, 6605L, 6606L,
6607L, 6608L, 6609L, 6610L, 6611L, 6612L, 6613L, 6614L, 6615L,
6616L, 6617L, 6618L, 6619L, 6620L, 6621L, 6622L, 6623L, 6624L,
6625L, 6626L, 6627L, 6628L, 6629L, 6630L, 6631L, 6632L, 6633L,
6634L, 6635L, 6636L, 6637L, 6638L, 6639L, 6640L, 6641L, 6642L,
6643L, 6644L, 6647L, 6648L, 6649L, 6650L, 6651L, 6652L, 6653L,
6654L, 6655L, 6656L, 6657L, 6658L, 6659L, 6660L, 6661L, 6662L,
6663L, 6664L, 6665L, 6666L, 6667L, 6668L, 6669L, 6670L, 6671L,
6672L, 6673L, 6674L, 6675L, 6676L, 6677L, 6678L, 6679L, 6680L,
6681L, 6682L, 6683L, 6684L, 6685L, 6686L, 6687L, 6688L, 6689L,
6690L, 6691L, 6692L, 6693L, 6694L, 6695L, 6696L, 6697L, 6698L,
6699L, 6700L, 6701L, 6702L, 6703L, 6704L, 6705L, 6706L, 6707L,
6708L, 6709L, 6710L, 6711L, 6712L, 6713L, 6714L, 6715L, 6716L,
6717L, 6718L, 6719L, 6720L, 6721L, 6722L, 6723L, 6725L, 6726L,
6727L, 6728L, 6729L, 6730L, 6731L, 6732L, 6733L, 6734L, 6735L,
6736L, 6737L, 6738L, 6739L, 6740L, 6741L, 6742L, 6743L, 6744L,
6745L, 6746L, 6747L, 6748L, 6749L, 6750L, 6751L, 6752L, 6753L,
6754L, 6755L, 6756L, 6757L, 6758L, 6759L, 6760L, 6761L, 6762L,
6763L, 6764L, 6765L, 6766L, 6767L, 6768L, 6769L, 6770L, 6771L,
6772L, 6773L, 6774L, 6775L, 6776L, 6777L, 6778L, 6779L, 6780L,
6781L, 6782L, 6783L, 6784L, 6785L, 6786L, 6787L, 6788L, 6789L,
6790L, 6791L, 6792L, 6793L, 6794L, 6795L, 6796L, 6797L, 6798L,
6799L, 6800L, 6801L, 6802L, 6803L, 6804L, 6805L, 6806L, 6807L,
6808L, 6809L, 6810L, 6811L, 6812L, 6813L, 6814L, 6815L, 6816L,
6817L, 6818L, 6819L, 6820L, 6821L, 6822L, 6823L, 6824L, 6825L,
6826L, 6827L, 6828L, 6829L, 6830L, 6831L, 6832L, 6833L, 6834L,
6835L, 6836L, 6837L, 6838L, 6839L, 6840L, 6841L, 6842L, 6843L,
6844L, 6845L, 6846L, 6847L, 6848L, 6849L, 6850L, 6851L, 6852L,
6853L, 6854L, 6855L, 6856L, 6857L, 6858L, 6859L, 6860L, 6861L,
6862L, 6863L, 6864L, 6865L, 6866L, 6867L, 6868L, 6869L, 6870L,
6871L, 6872L, 6873L, 6874L, 6875L, 6876L, 6877L, 6878L, 6879L,
6880L, 6881L, 6882L, 6883L, 6884L, 6885L, 6886L, 6887L, 6888L,
6889L, 6890L, 6891L, 6892L, 6893L, 6894L, 6895L, 6896L, 6897L,
6898L, 6899L, 6900L, 6901L, 6902L, 6903L, 6904L, 6905L, 6906L,
6907L, 6908L, 6909L, 6910L, 6911L, 6912L, 6913L, 6914L, 6915L,
6916L, 6917L, 6918L, 6919L, 6920L, 6921L, 6922L, 6923L, 6924L,
6925L, 6926L, 6927L, 6928L, 6929L, 6930L, 6931L, 6932L, 6933L,
6934L, 6935L, 6936L, 6937L, 6938L, 6939L, 6940L, 6942L, 6943L,
6944L, 6945L, 6946L, 6947L, 6948L, 6949L, 6950L, 6951L, 6952L,
6953L, 6954L, 6955L, 6956L, 6957L, 6958L, 6959L, 6960L, 6961L,
6962L, 6963L, 6964L, 6965L, 6966L, 6967L, 6968L, 6969L, 6970L,
6971L, 6972L, 6973L, 6974L, 6975L, 6976L, 6977L, 6978L, 6979L,
6980L, 6981L, 6982L, 6983L, 6984L, 6985L, 6986L, 6987L, 6988L,
6989L, 6990L, 6991L, 6992L, 6993L, 6994L, 6995L, 6996L, 6997L,
6998L, 6999L, 7000L, 7001L, 7002L, 7003L, 7004L, 7005L, 7006L,
7007L, 7008L, 7009L, 7010L, 7011L, 7012L, 7013L, 7014L, 7015L,
7016L, 7017L, 7018L, 7019L, 7020L, 7021L, 7022L, 7023L, 7024L,
7025L, 7026L, 7027L, 7028L, 7029L, 7030L, 7031L, 7036L, 7037L,
7038L, 7039L, 7040L, 7041L, 7042L, 7043L, 7044L, 7045L, 7046L,
7047L, 7048L, 7049L, 7050L, 7051L, 7052L, 7053L, 7054L, 7055L,
7056L, 7057L, 7058L, 7059L, 7060L, 7061L, 7062L, 7063L, 7064L,
7065L, 7066L, 7067L, 7068L, 7069L, 7070L, 7071L, 7072L, 7073L,
7074L, 7075L, 7076L, 7077L, 7078L, 7079L, 7080L, 7081L, 7082L,
7083L, 7084L, 7085L, 7086L, 7087L, 7088L, 7089L, 7090L, 7091L,
7092L, 7093L, 7094L, 7095L, 7096L, 7097L, 7098L, 7099L, 7100L,
7101L, 7102L, 7103L, 7104L, 7105L, 7106L, 7107L, 7108L, 7109L,
7110L, 7111L, 7112L, 7113L, 7114L, 7115L, 7116L, 7117L, 7118L,
7119L, 7120L, 7121L, 7122L, 7123L, 7124L, 7125L, 7126L, 7127L,
7128L, 7129L, 7130L, 7131L, 7132L, 7133L, 7134L, 7135L, 7136L,
7139L, 7141L, 7142L, 7144L, 7145L, 7147L, 7148L, 7149L, 7152L,
7153L, 7154L, 7155L, 7156L, 7157L, 7158L, 7159L, 7160L, 7161L,
7162L, 7163L, 7164L, 7165L, 7166L, 7167L, 7168L, 7169L, 7170L,
7172L, 7173L, 7174L, 7175L, 7177L, 7178L, 7179L, 7181L, 7182L,
7184L, 7185L, 7186L, 7189L, 7190L, 7191L, 7192L, 7193L, 7194L,
7195L, 7196L, 7197L, 7198L, 7199L, 7200L, 7201L, 7202L, 7203L,
7204L, 7205L, 7206L, 7208L, 7209L, 7210L, 7211L, 7212L, 7213L,
7214L, 7215L, 7216L, 7217L, 7218L, 7219L, 7220L, 7221L, 7222L,
7223L, 7224L, 7225L, 7226L, 7227L, 7228L, 7229L, 7230L, 7231L,
7232L, 7233L, 7238L, 7239L, 7240L, 7241L, 7242L, 7243L, 7244L,
7245L, 7246L, 7247L, 7248L, 7249L, 7250L, 7251L, 7252L, 7253L,
7254L, 7255L, 7256L, 7257L, 7258L, 7259L, 7260L, 7261L, 7262L,
7263L, 7264L, 7265L, 7266L, 7267L, 7268L, 7269L, 7270L, 7271L,
7272L, 7273L, 7274L, 7275L, 7276L, 7277L, 7278L, 7279L, 7280L,
7281L, 7282L, 7283L, 7284L, 7285L, 7286L, 7287L, 7288L, 7289L,
7290L, 7291L, 7292L, 7293L, 7294L, 7295L, 7296L, 7297L, 7298L,
7299L, 7300L, 7301L, 7302L, 7304L, 7305L, 7306L, 7307L, 7308L,
7309L, 7310L, 7311L, 7312L, 7313L, 7314L, 7315L, 7316L, 7317L,
7318L, 7319L, 7320L, 7321L, 7322L, 7323L, 7324L, 7325L, 7326L,
7327L, 7328L, 7329L, 7330L, 7331L, 7332L, 7333L, 7334L, 7335L,
7336L, 7337L, 7338L, 7339L, 7340L, 7341L, 7343L, 7344L, 7345L,
7347L, 7348L, 7349L, 7350L, 7351L, 7353L, 7354L, 7355L, 7356L,
7357L, 7358L, 7359L, 7361L, 7362L, 7363L, 7364L, 7365L, 7366L,
7367L, 7368L, 7369L, 7370L, 7371L, 7372L, 7373L, 7374L, 7375L,
7376L, 7378L, 7380L, 7381L, 7382L, 7383L, 7384L, 7385L, 7386L,
7387L, 7388L, 7389L, 7390L, 7391L, 7392L, 7393L, 7394L, 7395L,
7396L, 7398L, 7399L, 7400L, 7401L, 7402L, 7403L, 7404L, 7406L,
7407L, 7408L, 7409L, 7410L, 7411L, 7412L, 7413L, 7414L, 7415L,
7416L, 7417L, 7418L, 7419L, 7420L, 7421L, 7422L, 7423L, 7424L,
7425L, 7426L, 7427L, 7428L, 7429L, 7430L, 7431L, 7432L, 7433L,
7434L, 7435L, 7437L, 7438L, 7439L, 7440L, 7442L, 7443L, 7444L,
7445L, 7446L, 7447L, 7448L, 7449L, 7450L, 7451L, 7452L, 7453L,
7454L, 7455L, 7456L, 7457L, 7458L, 7459L, 7460L, 7461L, 7462L,
7463L, 7464L, 7466L, 7467L, 7468L, 7469L, 7470L, 7471L, 7472L,
7473L, 7474L, 7475L, 7476L, 7477L, 7478L, 7479L, 7480L, 7481L,
7482L, 7483L, 7484L, 7485L, 7486L, 7487L, 7488L, 7489L, 7490L,
7491L, 7492L, 7493L, 7494L, 7495L, 7496L, 7497L, 7498L, 7499L,
7500L, 7501L, 7502L, 7503L, 7504L, 7505L, 7506L, 7507L, 7508L,
7509L, 7510L, 7511L, 7512L, 7513L, 7514L, 7515L, 7516L, 7517L,
7518L, 7519L, 7520L, 7521L, 7522L, 7523L, 7524L, 7525L, 7526L,
7528L, 7529L, 7530L, 7531L, 7532L, 7533L, 7534L, 7535L, 7536L,
7537L, 7538L, 7539L, 7540L, 7545L, 7546L, 7548L, 7549L, 7551L,
7552L, 7553L, 7554L, 7555L, 7556L, 7557L, 7558L, 7559L, 7560L,
7561L, 7562L, 7563L, 7564L, 7565L, 7566L, 7567L, 7568L, 7569L,
7570L, 7571L, 7572L, 7573L, 7574L, 7575L, 7576L, 7577L, 7578L,
7579L, 7580L, 7581L, 7582L, 7583L, 7584L, 7585L, 7586L, 7587L,
7588L, 7589L, 7590L, 7591L, 7592L, 7593L, 7596L, 7598L, 7599L,
7600L, 7601L, 7602L, 7603L, 7604L, 7605L, 7606L, 7607L, 7608L,
7609L, 7610L, 7612L, 7613L, 7615L, 7616L, 7617L, 7618L, 7619L,
7620L, 7621L, 7622L, 7623L, 7624L, 7625L, 7626L, 7627L, 7628L,
7629L, 7630L, 7631L, 7632L, 7633L, 7634L, 7635L, 7636L, 7637L,
7638L, 7639L, 7640L, 7641L, 7642L, 7643L, 7644L, 7645L, 7646L,
7647L, 7648L, 7649L, 7650L, 7651L, 7652L, 7653L, 7654L, 7655L,
7656L, 7657L, 7658L, 7659L, 7660L, 7661L, 7662L, 7663L, 7664L,
7665L, 7666L, 7667L, 7668L, 7669L, 7670L, 7671L, 7672L, 7673L,
7674L, 7675L, 7676L, 7677L, 7678L, 7679L, 7680L, 7681L, 7682L,
7683L, 7684L, 7685L, 7686L, 7687L, 7688L, 7689L, 7690L, 7691L,
7692L, 7693L, 7694L, 7695L, 7696L, 7697L, 7698L, 7699L, 7700L,
7701L, 7702L, 7703L, 7704L, 7705L, 7706L, 7707L, 7708L, 7709L,
7710L, 7712L, 7713L, 7714L, 7715L, 7716L, 7717L, 7718L, 7719L,
7720L, 7721L, 7722L, 7723L, 7724L, 7725L, 7726L, 7727L, 7728L,
7729L, 7730L, 7731L, 7732L, 7733L, 7734L, 7735L, 7736L, 7737L,
7738L, 7739L, 7740L, 7741L, 7742L, 7743L, 7744L, 7745L, 7746L,
7747L, 7748L, 7749L, 7750L, 7751L, 7752L, 7753L, 7754L, 7755L,
7756L, 7757L, 7758L, 7759L, 7760L, 7761L, 7762L, 7763L, 7764L,
7765L, 7766L, 7767L, 7768L, 7769L, 7770L, 7771L, 7772L, 7773L,
7774L, 7775L, 7776L, 7777L, 7778L, 7779L, 7780L, 7781L, 7782L,
7783L, 7784L, 7785L, 7786L, 7787L, 7788L, 7789L, 7790L, 7791L,
7792L, 7793L, 7794L, 7795L, 7796L, 7797L, 7798L, 7799L, 7800L,
7801L, 7802L, 7803L, 7804L, 7805L, 7806L, 7807L, 7808L, 7809L,
7810L, 7811L, 7812L, 7813L, 7814L, 7815L, 7816L, 7817L, 7818L,
7819L, 7820L, 7821L, 7822L, 7823L, 7824L, 7825L, 7826L, 7827L,
7828L, 7830L, 7831L, 7832L, 7833L, 7834L, 7835L, 7836L, 7837L,
7839L, 7840L, 7841L, 7842L, 7843L, 7844L, 7845L, 7846L, 7847L,
7848L, 7849L, 7850L, 7851L, 7852L, 7853L, 7854L, 7855L, 7856L,
7857L, 7858L, 7859L, 7860L, 7861L, 7862L, 7863L, 7864L, 7865L,
7866L, 7867L, 7868L, 7869L, 7870L, 7871L, 7872L, 7873L, 7874L,
7875L, 7876L, 7877L, 7878L, 7879L, 7880L, 7881L, 7882L, 7883L,
7884L, 7885L, 7886L, 7887L, 7888L, 7889L, 7890L, 7891L, 7892L,
7893L, 7894L, 7895L, 7896L, 7897L, 7898L, 7899L, 7900L, 7901L,
7902L, 7903L, 7904L, 7905L, 7906L, 7907L, 7908L, 7909L, 7910L,
7912L, 7913L, 7914L, 7915L, 7916L, 7917L, 7918L, 7919L, 7920L,
7921L, 7922L, 7923L, 7924L, 7925L, 7926L, 7927L, 7928L, 7929L,
7930L, 7931L, 7932L, 7933L, 7934L, 7935L, 7936L, 7937L, 7938L,
7939L, 7940L, 7941L, 7942L, 7943L, 7944L, 7945L, 7946L, 7947L,
7948L, 7949L, 7950L, 7951L, 7952L, 7953L, 7954L, 7955L, 7956L,
7957L, 7958L, 7959L, 7960L, 7961L, 7962L, 7963L, 7964L, 7965L,
7966L, 7967L, 7968L, 7969L, 7970L, 7971L, 7972L, 7973L, 7974L,
7975L, 7976L, 7977L, 7978L, 7979L, 7980L, 7981L, 7982L, 7983L,
7984L, 7985L, 7986L, 7987L, 7988L, 7989L, 7990L, 7991L, 7996L,
7997L, 7998L, 7999L, 8000L, 8001L, 8002L, 8003L, 8004L, 8005L,
8006L, 8007L, 8008L, 8009L, 8010L, 8011L, 8012L, 8013L, 8015L,
8016L, 8017L, 8018L, 8019L, 8020L, 8021L, 8022L, 8023L, 8024L,
8025L, 8026L, 8027L, 8028L, 8029L, 8030L, 8031L, 8033L, 8034L,
8035L, 8036L, 8037L, 8038L, 8039L, 8040L, 8041L, 8042L, 8043L,
8044L, 8045L, 8046L, 8047L, 8048L, 8049L, 8050L, 8051L, 8053L,
8054L, 8055L, 8057L, 8058L, 8059L, 8060L, 8061L, 8062L, 8063L,
8064L, 8065L, 8066L, 8067L, 8068L, 8069L, 8070L, 8071L, 8072L,
8073L, 8074L, 8075L, 8076L, 8077L, 8078L, 8079L, 8080L, 8081L,
8082L, 8083L, 8084L, 8085L, 8086L, 8087L, 8088L, 8089L, 8090L,
8091L, 8092L, 8093L, 8094L, 8095L, 8096L, 8097L, 8098L, 8099L,
8100L, 8101L, 8102L, 8103L, 8104L, 8105L, 8106L, 8107L, 8108L,
8109L, 8110L, 8111L, 8112L, 8114L, 8115L, 8116L, 8117L, 8118L,
8119L, 8120L, 8121L, 8122L, 8123L, 8124L, 8125L, 8126L, 8127L,
8128L, 8129L, 8130L, 8131L, 8132L, 8133L, 8134L, 8135L, 8136L,
8137L, 8138L, 8139L, 8140L, 8141L, 8142L, 8143L, 8144L, 8145L,
8146L, 8147L, 8148L, 8149L, 8150L, 8151L, 8152L, 8153L, 8154L,
8155L, 8156L, 8157L, 8158L, 8159L, 8160L, 8161L, 8162L, 8163L,
8164L, 8165L, 8166L, 8167L, 8168L, 8169L, 8170L, 8171L, 8172L,
8173L, 8174L, 8175L, 8176L, 8177L, 8178L, 8179L, 8180L, 8181L,
8182L, 8183L, 8184L, 8185L, 8186L, 8187L, 8188L, 8189L, 8190L,
8191L, 8192L, 8194L, 8195L, 8196L, 8197L, 8198L, 8199L, 8200L,
8201L, 8202L, 8203L, 8204L, 8205L, 8206L, 8207L, 8208L, 8209L,
8210L, 8211L, 8212L, 8213L, 8214L, 8215L, 8216L, 8217L, 8218L,
8219L, 8220L, 8221L, 8222L, 8223L, 8224L, 8225L, 8226L, 8227L,
8228L, 8229L, 8230L, 8231L, 8232L, 8233L, 8234L, 8235L, 8236L,
8237L, 8238L, 8239L, 8240L, 8241L, 8242L, 8243L, 8244L, 8245L,
8246L, 8247L, 8248L, 8249L, 8250L, 8251L, 8252L, 8253L, 8254L,
8255L, 8256L, 8257L, 8258L, 8259L, 8260L, 8261L, 8262L, 8263L,
8264L, 8265L, 8266L, 8267L, 8268L, 8269L, 8271L, 8272L, 8273L,
8274L, 8275L, 8276L, 8277L, 8278L, 8279L, 8280L, 8282L, 8283L,
8284L, 8285L, 8286L, 8287L, 8288L, 8290L, 8291L, 8292L, 8293L,
8294L, 8295L, 8296L, 8297L, 8299L, 8301L, 8302L, 8303L, 8304L,
8305L, 8306L, 8307L, 8308L, 8309L, 8310L, 8311L, 8313L, 8315L,
8316L, 8317L, 8318L, 8319L, 8320L, 8321L, 8322L, 8323L, 8324L,
8325L, 8326L, 8327L, 8328L, 8329L, 8330L, 8331L, 8332L, 8333L,
8334L, 8335L, 8336L, 8338L, 8339L, 8340L, 8341L, 8342L, 8343L,
8344L, 8345L, 8346L, 8347L, 8348L, 8349L, 8350L, 8351L, 8352L,
8353L, 8354L, 8355L, 8356L, 8357L, 8358L, 8359L, 8361L, 8362L,
8363L, 8364L, 8365L, 8366L, 8367L, 8368L, 8369L, 8370L, 8371L,
8372L, 8373L, 8374L, 8375L, 8376L, 8377L, 8378L, 8379L, 8380L,
8381L, 8382L, 8384L, 8385L, 8386L, 8387L, 8388L, 8389L, 8390L,
8391L, 8392L, 8393L, 8394L, 8395L, 8396L, 8397L, 8398L, 8399L,
8400L, 8401L, 8402L, 8404L, 8405L, 8406L, 8407L, 8408L, 8409L,
8410L, 8411L, 8412L, 8413L, 8414L, 8415L, 8416L, 8417L, 8418L,
8419L, 8420L, 8421L, 8422L, 8423L, 8424L, 8425L, 8426L, 8427L,
8428L, 8429L, 8430L, 8431L, 8432L, 8434L, 8435L, 8436L, 8437L,
8438L, 8439L, 8440L, 8441L, 8443L, 8444L, 8445L, 8446L, 8447L,
8448L, 8449L, 8450L, 8451L, 8452L, 8453L, 8454L, 8455L, 8456L,
8457L, 8458L, 8459L, 8460L, 8461L, 8462L, 8463L, 8464L, 8465L,
8466L, 8467L, 8468L, 8469L, 8470L, 8471L, 8472L, 8473L, 8479L,
8480L, 8481L, 8482L, 8483L, 8484L, 8485L, 8486L, 8487L, 8488L,
8489L, 8490L, 8491L, 8492L, 8493L, 8494L, 8495L, 8496L, 8497L,
8498L, 8499L, 8500L, 8501L, 8502L, 8503L, 8504L, 8505L, 8506L,
8507L, 8508L, 8509L, 8510L, 8511L, 8512L, 8513L, 8514L, 8515L,
8516L, 8517L, 8518L, 8519L, 8520L, 8521L, 8522L, 8523L, 8524L,
8525L, 8526L, 8527L, 8528L, 8529L, 8530L, 8531L, 8532L, 8533L,
8534L, 8535L, 8536L, 8537L, 8538L, 8539L, 8540L, 8541L, 8542L,
8543L, 8544L, 8545L, 8546L, 8547L, 8548L, 8549L, 8550L, 8551L,
8552L, 8553L, 8554L, 8555L, 8556L, 8557L, 8558L, 8559L, 8560L,
8561L, 8562L, 8563L, 8564L, 8565L, 8566L, 8567L, 8568L, 8569L,
8570L, 8571L, 8572L, 8573L, 8574L, 8575L, 8576L, 8577L, 8578L,
8579L, 8580L, 8581L, 8582L, 8583L, 8584L, 8585L, 8586L, 8587L,
8588L, 8589L, 8590L, 8591L, 8592L, 8593L, 8594L, 8595L, 8596L,
8597L, 8598L, 8599L, 8600L, 8601L, 8602L, 8603L, 8604L, 8605L,
8606L, 8607L, 8608L, 8609L, 8610L, 8611L, 8612L, 8613L, 8614L,
8615L, 8616L, 8617L, 8618L, 8619L, 8620L, 8621L, 8622L, 8623L,
8624L, 8625L, 8626L, 8627L, 8628L, 8629L, 8630L, 8631L, 8632L,
8633L, 8634L, 8635L, 8636L, 8637L, 8638L, 8639L, 8640L, 8641L,
8642L, 8643L, 8644L, 8645L, 8646L, 8647L, 8648L, 8649L, 8650L,
8651L, 8652L, 8653L, 8654L, 8655L, 8656L, 8657L, 8658L, 8659L,
8660L, 8661L, 8662L, 8663L, 8664L, 8665L, 8666L, 8667L, 8668L,
8669L, 8670L, 8671L, 8672L, 8673L, 8674L, 8675L, 8676L, 8677L,
8678L, 8679L, 8680L, 8681L, 8682L, 8683L, 8684L, 8685L, 8686L,
8687L, 8689L, 8690L, 8692L, 8693L, 8694L, 8695L, 8696L, 8698L,
8699L, 8700L, 8701L, 8702L, 8703L, 8704L, 8705L, 8706L, 8707L,
8708L, 8709L, 8710L, 8711L, 8712L, 8713L, 8714L, 8715L, 8716L,
8717L, 8718L, 8719L, 8720L, 8721L, 8722L, 8723L, 8724L, 8725L,
8726L, 8727L, 8728L, 8729L, 8730L, 8731L, 8732L, 8733L, 8734L,
8735L, 8736L, 8737L, 8738L, 8739L, 8740L, 8741L, 8742L, 8743L,
8744L, 8745L, 8746L, 8747L, 8748L, 8749L, 8751L, 8752L, 8753L,
8754L, 8755L, 8756L, 8757L, 8758L, 8759L, 8760L, 8761L, 8762L,
8763L, 8764L, 8765L, 8766L, 8767L, 8768L, 8769L, 8770L, 8771L,
8772L, 8773L, 8774L, 8775L, 8776L, 8777L, 8778L, 8779L, 8781L,
8782L, 8783L, 8784L, 8785L, 8786L, 8787L, 8788L, 8789L, 8790L,
8791L, 8792L, 8793L, 8794L, 8795L, 8796L, 8797L, 8798L, 8799L,
8800L, 8801L, 8802L, 8803L, 8804L, 8805L, 8806L, 8807L, 8808L,
8809L, 8810L, 8811L, 8812L, 8813L, 8814L, 8815L, 8816L, 8817L,
8818L, 8819L, 8820L, 8821L, 8822L, 8823L, 8824L, 8825L, 8826L,
8827L, 8828L, 8829L, 8830L, 8831L, 8832L, 8833L, 8834L, 8835L,
8836L, 8837L, 8838L, 8839L, 8840L, 8841L, 8842L, 8843L, 8844L,
8845L, 8846L, 8847L, 8848L, 8849L, 8850L, 8851L, 8852L, 8853L,
8854L, 8855L, 8856L, 8857L, 8858L, 8859L, 8860L, 8861L, 8862L,
8863L, 8864L, 8865L, 8866L, 8867L, 8868L, 8869L, 8870L, 8871L,
8872L, 8873L, 8874L, 8875L, 8876L, 8877L, 8878L, 8879L, 8880L,
8881L, 8883L, 8884L, 8885L, 8886L, 8887L, 8888L, 8889L, 8890L,
8891L, 8892L, 8893L, 8894L, 8895L, 8896L, 8897L, 8898L, 8899L,
8900L, 8901L, 8902L, 8903L, 8904L, 8905L, 8906L, 8907L, 8908L,
8909L, 8910L, 8911L, 8912L, 8913L, 8914L, 8915L, 8916L, 8917L,
8919L, 8920L, 8921L, 8922L, 8923L, 8924L, 8925L, 8926L, 8927L,
8928L, 8929L, 8930L, 8931L, 8932L, 8933L, 8934L, 8935L, 8936L,
8937L, 8938L, 8939L, 8940L, 8941L, 8942L, 8943L, 8944L, 8945L,
8950L, 8951L, 8952L, 8953L, 8954L, 8955L, 8956L, 8957L, 8958L,
8959L, 8960L, 8961L, 8962L, 8963L, 8964L, 8965L, 8966L, 8967L,
8968L, 8969L, 8970L, 8971L, 8972L, 8973L, 8974L, 8975L, 8976L,
8977L, 8978L, 8979L, 8980L, 8981L, 8982L, 8983L, 8984L, 8985L,
8986L, 8987L, 8988L, 8989L, 8990L, 8991L, 8992L, 8993L, 8994L,
8995L, 8997L, 8998L, 8999L, 9000L, 9001L, 9002L, 9003L, 9004L,
9005L, 9006L, 9007L, 9008L, 9009L, 9010L, 9012L, 9013L, 9014L,
9016L, 9017L, 9018L, 9023L, 9024L, 9025L, 9026L, 9027L, 9028L,
9029L, 9030L, 9031L, 9032L, 9033L, 9034L, 9035L, 9036L, 9037L,
9038L, 9039L, 9040L, 9041L, 9042L, 9043L, 9044L, 9045L, 9046L,
9047L, 9048L, 9049L, 9050L, 9051L, 9052L, 9053L, 9054L, 9055L,
9056L, 9057L, 9058L, 9059L, 9060L, 9061L, 9062L, 9063L, 9064L,
9065L, 9066L, 9067L, 9068L, 9069L, 9070L, 9071L, 9072L, 9073L,
9074L, 9075L, 9076L, 9077L, 9078L, 9079L, 9080L, 9081L, 9082L,
9083L, 9084L, 9085L, 9086L, 9087L, 9088L, 9089L, 9090L, 9091L,
9092L, 9093L, 9094L, 9095L, 9096L, 9097L, 9098L, 9099L, 9100L,
9101L, 9102L, 9103L, 9104L, 9105L, 9106L, 9107L, 9108L, 9109L,
9110L, 9111L, 9112L, 9113L, 9114L, 9115L, 9116L, 9117L, 9118L,
9119L, 9121L, 9122L, 9123L, 9124L, 9125L, 9126L, 9127L, 9128L,
9129L, 9130L, 9131L, 9132L, 9133L, 9134L, 9135L, 9136L, 9137L,
9138L, 9139L, 9140L, 9141L, 9142L, 9144L, 9145L, 9146L, 9147L,
9148L, 9149L, 9150L, 9151L, 9152L, 9153L, 9154L, 9155L, 9156L,
9158L, 9159L, 9160L, 9161L, 9162L, 9163L, 9164L, 9165L, 9166L,
9167L, 9168L, 9169L, 9170L, 9172L, 9173L, 9174L, 9175L, 9176L,
9177L, 9179L, 9180L, 9182L, 9183L, 9184L, 9185L, 9186L, 9187L,
9188L, 9189L, 9190L, 9191L, 9192L, 9193L, 9194L, 9195L, 9196L,
9197L, 9199L, 9200L, 9201L, 9202L, 9203L, 9204L, 9205L, 9206L,
9207L, 9208L, 9209L, 9210L, 9212L, 9213L, 9214L, 9215L, 9216L,
9217L, 9218L, 9219L, 9220L, 9221L, 9222L, 9223L, 9224L, 9225L,
9226L, 9227L, 9228L, 9230L, 9231L, 9232L, 9233L, 9234L, 9235L,
9236L, 9237L, 9238L, 9239L, 9240L, 9242L, 9243L, 9244L, 9245L,
9246L, 9247L, 9249L, 9250L, 9251L, 9252L, 9254L, 9255L, 9256L,
9257L, 9258L, 9260L, 9261L, 9262L, 9263L, 9264L, 9265L, 9267L,
9269L, 9270L, 9271L, 9272L, 9273L, 9274L, 9275L, 9276L, 9277L,
9278L, 9279L, 9280L, 9281L, 9282L, 9283L, 9284L, 9285L, 9288L,
9289L, 9290L, 9291L, 9292L, 9293L, 9295L, 9296L, 9297L, 9298L,
9299L, 9300L, 9301L, 9302L, 9303L, 9305L, 9306L, 9307L, 9308L,
9309L, 9310L, 9311L, 9312L, 9313L, 9314L, 9315L, 9316L, 9317L,
9318L, 9319L, 9320L, 9321L, 9322L, 9326L, 9327L, 9328L, 9329L,
9330L, 9331L, 9332L, 9333L, 9334L, 9335L, 9336L, 9337L, 9338L,
9339L, 9340L, 9341L, 9342L, 9343L, 9344L, 9345L, 9346L, 9347L,
9348L, 9349L, 9350L, 9351L, 9352L, 9353L, 9355L, 9356L, 9357L,
9358L, 9359L, 9360L, 9361L, 9362L, 9363L, 9365L, 9366L, 9367L,
9368L, 9369L, 9371L, 9372L, 9373L, 9374L, 9375L, 9376L, 9377L,
9378L, 9379L, 9380L, 9381L, 9382L, 9383L, 9384L, 9385L, 9387L,
9388L, 9390L, 9391L, 9392L, 9393L, 9394L, 9395L, 9396L, 9397L,
9398L, 9399L, 9400L, 9401L, 9402L, 9403L, 9404L, 9405L, 9406L,
9407L, 9408L, 9409L, 9410L, 9417L, 9418L, 9419L, 9420L, 9421L,
9422L, 9423L, 9424L, 9425L, 9426L, 9427L, 9428L, 9429L, 9430L,
9431L, 9432L, 9433L, 9434L, 9435L, 9436L, 9437L, 9438L, 9439L,
9440L, 9441L, 9442L, 9443L, 9444L, 9445L, 9446L, 9447L, 9448L,
9449L, 9450L, 9451L, 9452L, 9453L, 9454L, 9455L, 9456L, 9457L,
9458L, 9459L, 9460L, 9461L, 9462L, 9463L, 9465L, 9466L, 9467L,
9468L, 9469L, 9470L, 9471L, 9472L, 9473L, 9474L, 9475L, 9476L,
9477L, 9478L, 9479L, 9480L, 9481L, 9482L, 9483L, 9485L, 9486L,
9487L, 9492L, 9493L, 9494L, 9495L, 9496L, 9497L, 9498L, 9499L,
9500L, 9501L, 9502L, 9503L, 9505L, 9506L, 9507L, 9508L, 9509L,
9510L, 9511L, 9512L, 9513L, 9514L, 9515L, 9516L, 9518L, 9519L,
9520L, 9521L, 9522L, 9523L, 9524L, 9525L, 9526L, 9527L, 9528L,
9529L, 9530L, 9531L, 9532L, 9533L, 9534L, 9535L, 9536L, 9537L,
9538L, 9539L, 9540L, 9541L, 9542L, 9543L, 9544L, 9545L, 9546L,
9547L, 9548L, 9549L, 9550L, 9551L, 9552L, 9553L, 9554L, 9555L,
9556L, 9557L, 9558L, 9559L, 9560L, 9561L, 9562L, 9563L, 9564L,
9565L, 9566L, 9567L, 9568L, 9570L, 9571L, 9572L, 9573L, 9574L,
9575L, 9576L, 9577L, 9578L, 9579L, 9580L, 9581L, 9582L, 9583L,
9584L, 9585L, 9586L, 9587L, 9588L, 9589L, 9590L, 9591L, 9592L,
9593L, 9594L, 9595L, 9596L, 9597L, 9598L, 9599L, 9600L, 9601L,
9603L, 9604L, 9605L, 9606L, 9607L, 9608L, 9609L, 9610L, 9611L,
9612L, 9613L, 9615L, 9616L, 9617L, 9618L, 9619L, 9620L, 9621L,
9622L, 9623L, 9624L, 9625L, 9626L, 9627L, 9628L, 9629L, 9630L,
9631L, 9632L, 9633L, 9634L, 9635L, 9636L, 9637L, 9638L, 9639L,
9640L, 9641L, 9642L, 9644L, 9645L, 9646L, 9647L, 9648L, 9649L,
9651L, 9652L, 9653L, 9654L, 9655L, 9656L, 9657L, 9658L, 9659L,
9660L, 9661L, 9662L, 9663L, 9664L, 9665L, 9666L, 9667L, 9668L,
9669L, 9670L, 9671L, 9672L, 9673L, 9674L, 9675L, 9676L, 9677L,
9678L, 9679L, 9680L, 9681L, 9682L, 9683L, 9684L, 9685L, 9686L,
9687L, 9688L, 9689L, 9691L, 9692L, 9693L, 9694L, 9695L, 9696L,
9697L, 9698L, 9699L, 9700L, 9701L, 9702L, 9703L, 9704L, 9705L,
9706L, 9707L, 9708L, 9709L, 9710L, 9711L, 9712L, 9715L, 9716L,
9717L, 9718L, 9719L, 9720L, 9721L, 9722L, 9723L, 9724L, 9725L,
9726L, 9727L, 9728L, 9729L, 9730L, 9731L, 9732L, 9733L, 9734L,
9735L, 9736L, 9737L, 9738L, 9739L, 9740L, 9741L, 9742L, 9743L,
9744L, 9745L, 9751L, 9752L, 9753L, 9754L, 9755L, 9756L, 9757L,
9758L, 9759L, 9760L, 9761L, 9762L, 9763L, 9764L, 9765L, 9766L,
9767L, 9768L, 9769L, 9770L, 9771L, 9772L, 9773L, 9774L, 9775L,
9776L, 9777L, 9778L, 9779L, 9780L, 9781L, 9782L, 9783L, 9784L,
9785L, 9786L, 9787L, 9788L, 9789L, 9790L, 9791L, 9792L, 9793L,
9794L, 9795L, 9796L, 9797L, 9798L, 9799L, 9800L, 9801L, 9802L,
9803L, 9804L, 9805L, 9806L, 9807L, 9808L, 9809L, 9810L, 9811L,
9812L, 9813L, 9814L, 9815L, 9816L, 9817L, 9818L, 9819L, 9820L,
9821L, 9822L, 9823L, 9824L, 9825L, 9826L, 9827L, 9829L, 9830L,
9831L, 9832L, 9833L, 9834L, 9835L, 9836L, 9837L, 9838L, 9839L,
9840L, 9841L, 9842L, 9843L, 9844L, 9845L, 9846L, 9847L, 9848L,
9849L, 9850L, 9851L, 9852L, 9853L, 9854L, 9855L, 9856L, 9857L,
9858L, 9860L, 9862L, 9863L, 9864L, 9865L, 9866L, 9867L, 9868L,
9869L, 9870L, 9871L, 9872L, 9873L, 9874L, 9875L, 9876L, 9877L,
9878L, 9879L, 9880L, 9881L, 9882L, 9883L, 9884L, 9885L, 9886L,
9887L, 9888L, 9889L, 9890L, 9891L, 9892L, 9893L, 9894L, 9896L,
9897L, 9898L, 9899L, 9900L, 9901L, 9902L, 9903L, 9904L, 9905L,
9906L, 9907L, 9908L, 9909L, 9910L, 9911L, 9912L, 9913L, 9914L,
9915L, 9916L, 9917L, 9918L, 9919L, 9920L, 9921L, 9922L, 9923L,
9924L, 9925L, 9926L, 9927L, 9928L, 9929L, 9930L, 9931L, 9932L,
9933L, 9934L, 9935L, 9936L, 9937L, 9938L, 9939L, 9940L, 9942L,
9943L, 9944L, 9945L, 9946L, 9947L, 9948L, 9949L, 9950L, 9951L,
9952L, 9953L, 9954L, 9955L, 9956L, 9957L, 9958L, 9959L, 9960L,
9961L, 9962L, 9963L, 9964L, 9965L, 9966L, 9967L, 9968L, 9969L,
9970L, 9971L, 9972L, 9973L, 9974L, 9975L, 9977L, 9978L, 9979L,
9980L, 9981L, 9982L, 9983L, 9984L, 9985L, 9986L, 9987L, 9988L,
9989L, 9990L, 9991L, 9992L, 9993L, 9994L, 9995L, 9996L, 9997L,
9998L, 9999L, 10000L, 10001L, 10002L, 10003L, 10004L, 10005L,
10006L, 10007L, 10008L, 10009L, 10010L, 10011L, 10012L, 10013L,
10014L, 10015L, 10016L, 10017L, 10018L, 10019L, 10020L, 10021L,
10022L, 10023L, 10024L, 10025L, 10026L, 10027L, 10028L, 10029L,
10030L, 10031L, 10032L, 10033L, 10034L, 10035L, 10036L, 10037L,
10038L, 10039L, 10040L, 10041L, 10042L, 10043L, 10044L, 10045L,
10046L, 10047L, 10048L, 10049L, 10050L, 10051L, 10052L, 10053L,
10054L, 10055L, 10056L, 10057L, 10058L, 10059L, 10060L, 10061L,
10062L, 10063L, 10064L, 10065L, 10066L, 10067L, 10068L, 10069L,
10070L, 10071L, 10072L, 10073L, 10074L, 10075L, 10076L, 10077L,
10078L, 10079L, 10080L, 10081L, 10082L, 10083L, 10085L, 10086L,
10087L, 10088L, 10089L, 10090L, 10091L, 10092L, 10093L, 10094L,
10095L, 10096L, 10097L, 10098L, 10099L, 10100L, 10101L, 10102L,
10103L, 10104L, 10105L, 10106L, 10107L, 10108L, 10109L, 10110L,
10111L, 10112L, 10113L, 10114L, 10115L, 10116L, 10117L, 10118L,
10119L, 10120L, 10121L, 10122L, 10123L, 10124L, 10125L, 10126L,
10127L, 10128L, 10129L, 10130L, 10131L, 10132L, 10133L, 10134L,
10135L, 10136L, 10137L, 10138L, 10139L, 10140L, 10141L, 10142L,
10143L, 10144L, 10145L, 10146L, 10147L, 10148L, 10149L, 10150L,
10151L, 10152L, 10153L, 10154L, 10155L, 10156L, 10157L, 10158L,
10159L, 10160L, 10161L, 10162L, 10163L, 10164L, 10165L, 10166L,
10167L, 10168L, 10169L, 10170L, 10171L, 10172L, 10173L, 10174L,
10175L, 10176L, 10177L, 10178L, 10179L, 10180L, 10181L, 10182L,
10183L, 10184L, 10185L, 10186L, 10187L, 10188L, 10189L, 10190L,
10191L, 10192L, 10193L, 10194L, 10195L, 10196L, 10197L, 10198L,
10199L, 10200L, 10201L, 10202L, 10203L, 10204L, 10205L, 10206L,
10207L, 10208L, 10209L, 10210L, 10211L, 10212L, 10213L, 10214L,
10215L, 10216L, 10217L, 10218L, 10219L, 10220L, 10221L, 10222L,
10223L, 10224L, 10225L, 10226L, 10227L, 10228L, 10229L, 10230L,
10231L, 10232L, 10233L, 10234L, 10235L, 10236L, 10237L, 10238L,
10239L, 10240L, 10241L, 10242L, 10243L, 10244L, 10245L, 10246L,
10247L, 10248L, 10249L, 10250L, 10251L, 10252L, 10254L, 10255L,
10256L, 10257L, 10258L, 10259L, 10260L, 10261L, 10262L, 10263L,
10264L, 10265L, 10266L, 10267L, 10268L, 10269L, 10270L, 10271L,
10272L, 10273L, 10274L, 10275L, 10276L, 10277L, 10278L, 10279L,
10280L, 10281L, 10282L, 10283L, 10284L, 10285L, 10286L, 10287L,
10288L, 10289L, 10290L, 10291L, 10292L, 10293L, 10294L, 10295L,
10296L, 10297L, 10298L, 10299L, 10300L, 10301L, 10302L, 10303L,
10304L, 10305L, 10306L, 10307L, 10308L, 10309L, 10310L, 10311L,
10312L, 10313L, 10314L, 10315L, 10316L, 10317L, 10318L, 10319L,
10320L, 10321L, 10322L, 10323L, 10324L, 10325L, 10326L, 10327L,
10328L, 10329L, 10330L, 10331L, 10332L, 10333L, 10334L, 10335L,
10336L, 10337L, 10338L, 10339L, 10340L, 10341L, 10342L, 10343L,
10344L, 10345L, 10346L, 10347L, 10348L, 10349L, 10350L, 10351L,
10352L, 10353L, 10354L, 10355L, 10356L, 10357L, 10358L, 10359L,
10360L, 10361L, 10362L, 10363L, 10364L, 10365L, 10366L, 10367L,
10368L, 10369L, 10370L, 10371L, 10372L, 10373L, 10374L, 10375L,
10376L, 10377L, 10378L, 10379L, 10380L, 10381L, 10382L, 10383L,
10384L, 10385L, 10386L, 10387L, 10388L, 10389L, 10390L, 10391L,
10392L, 10393L, 10394L, 10395L, 10396L, 10397L, 10398L, 10399L,
10400L, 10401L, 10402L, 10403L, 10404L, 10405L, 10406L, 10407L,
10411L, 10412L, 10413L, 10414L, 10415L, 10416L, 10417L, 10418L,
10419L, 10420L, 10421L, 10422L, 10423L, 10424L, 10425L, 10426L,
10427L, 10428L, 10429L, 10430L, 10431L, 10432L, 10433L, 10434L,
10435L, 10436L, 10437L, 10438L, 10439L, 10440L, 10441L, 10442L,
10443L, 10444L, 10445L, 10446L, 10447L, 10448L, 10449L, 10450L,
10451L, 10452L, 10453L, 10454L, 10455L, 10456L, 10457L, 10458L,
10459L, 10460L, 10462L, 10463L, 10464L, 10465L, 10467L, 10468L,
10469L, 10470L, 10471L, 10472L, 10473L, 10475L, 10476L, 10477L,
10478L, 10479L, 10480L, 10481L, 10482L, 10483L, 10484L, 10485L,
10488L, 10489L, 10490L, 10491L, 10492L, 10493L, 10494L, 10495L,
10496L, 10497L, 10498L, 10499L, 10500L, 10501L, 10502L, 10503L,
10504L, 10505L, 10506L, 10507L, 10508L, 10509L, 10510L, 10511L,
10512L, 10513L, 10514L, 10515L, 10516L, 10517L, 10518L, 10519L,
10520L, 10521L, 10522L, 10523L, 10524L, 10525L, 10526L, 10527L,
10528L, 10529L, 10530L, 10531L, 10532L, 10533L, 10534L, 10535L,
10536L, 10537L, 10538L, 10539L, 10540L, 10541L, 10542L, 10543L,
10544L, 10545L, 10546L, 10547L, 10548L, 10549L, 10550L, 10551L,
10552L, 10553L, 10554L, 10555L, 10556L, 10557L, 10558L, 10559L,
10560L, 10561L, 10562L, 10563L, 10564L, 10565L, 10566L, 10567L,
10568L, 10569L, 10570L, 10571L, 10572L, 10573L, 10574L, 10578L,
10579L, 10580L, 10581L, 10582L, 10583L, 10584L, 10585L, 10586L,
10587L, 10589L, 10590L, 10591L, 10592L, 10593L, 10594L, 10595L,
10596L, 10597L, 10598L, 10599L, 10600L, 10601L, 10602L, 10603L,
10604L, 10605L, 10606L, 10607L, 10608L, 10610L, 10611L, 10612L,
10613L, 10614L, 10615L, 10616L, 10617L, 10618L, 10619L, 10620L,
10621L, 10622L, 10623L, 10624L, 10625L, 10626L, 10627L, 10628L,
10629L, 10630L, 10631L, 10632L, 10633L, 10634L, 10635L, 10636L,
10637L, 10638L, 10639L, 10640L, 10641L, 10642L, 10643L, 10644L,
10645L, 10646L, 10647L, 10648L, 10649L, 10650L, 10651L, 10652L,
10653L, 10654L, 10655L, 10656L, 10657L, 10658L, 10659L, 10660L,
10661L, 10662L, 10663L, 10664L, 10665L, 10666L, 10667L, 10668L,
10669L, 10670L, 10671L, 10672L, 10673L, 10674L, 10675L, 10676L,
10677L, 10681L, 10682L, 10683L, 10684L, 10685L, 10686L, 10687L,
10688L, 10689L, 10690L, 10691L, 10692L, 10693L, 10694L, 10695L,
10696L, 10697L, 10698L, 10699L, 10700L, 10701L, 10702L, 10703L,
10704L, 10705L, 10706L, 10707L, 10708L, 10709L, 10710L, 10711L,
10712L, 10713L, 10714L, 10715L, 10716L, 10717L, 10718L, 10719L,
10720L, 10721L, 10722L, 10723L, 10724L, 10725L, 10726L, 10727L,
10728L, 10729L, 10730L, 10731L, 10732L, 10733L, 10734L, 10735L,
10736L, 10737L, 10738L, 10739L, 10740L, 10741L, 10742L, 10743L,
10744L, 10745L, 10746L, 10747L, 10748L, 10749L, 10750L, 10751L,
10752L, 10753L, 10754L, 10755L, 10756L, 10757L, 10758L, 10759L,
10760L, 10761L, 10762L, 10763L, 10766L, 10767L, 10768L, 10769L,
10770L, 10771L, 10772L, 10773L, 10774L, 10775L, 10776L, 10779L,
10780L, 10781L, 10782L, 10783L, 10784L, 10785L, 10786L, 10787L,
10788L, 10789L, 10790L, 10791L, 10792L, 10793L, 10794L, 10795L,
10796L, 10797L, 10798L, 10799L, 10800L, 10801L, 10802L, 10803L,
10804L, 10805L, 10806L, 10807L, 10808L, 10809L, 10810L, 10811L,
10812L, 10813L, 10814L, 10815L, 10816L, 10817L, 10818L, 10819L,
10820L, 10821L, 10822L, 10823L, 10824L, 10825L, 10826L, 10827L,
10828L, 10829L, 10830L, 10831L, 10832L, 10833L, 10834L, 10835L,
10836L, 10837L, 10838L, 10839L, 10840L, 10841L, 10842L, 10843L,
10844L, 10845L, 10846L, 10847L, 10848L, 10849L, 10850L, 10851L,
10852L, 10853L, 10854L, 10855L, 10856L, 10857L, 10858L, 10859L,
10860L, 10861L, 10862L, 10863L, 10864L, 10865L, 10866L, 10867L,
10868L, 10869L, 10870L, 10871L, 10872L, 10873L, 10874L, 10875L,
10876L, 10877L, 10878L, 10879L, 10880L, 10881L, 10882L, 10883L,
10884L, 10887L, 10888L, 10889L, 10890L, 10891L, 10892L, 10893L,
10894L, 10895L, 10896L, 10897L, 10898L, 10899L, 10900L, 10901L,
10902L, 10903L, 10904L, 10905L, 10906L, 10907L, 10908L, 10909L,
10910L, 10911L, 10912L, 10913L, 10914L, 10915L, 10916L, 10917L,
10918L, 10919L, 10920L, 10921L, 10922L, 10923L, 10924L, 10925L,
10926L, 10927L, 10928L, 10929L, 10930L, 10931L, 10932L, 10933L,
10934L, 10935L, 10936L, 10937L, 10938L, 10939L, 10940L, 10941L,
10942L, 10943L, 10944L, 10945L, 10946L, 10947L, 10948L, 10949L,
10950L, 10951L, 10952L, 10953L, 10954L, 10955L, 10956L, 10957L,
10958L, 10959L, 10960L, 10961L, 10962L, 10964L, 10965L, 10966L,
10967L, 10968L, 10969L, 10971L, 10972L, 10973L, 10974L, 10976L,
10977L, 10978L, 10979L, 10980L, 10981L, 10982L, 10983L, 10984L,
10985L, 10986L, 10987L, 10988L, 10989L, 10990L, 10991L, 10992L,
10993L, 10994L, 10995L, 10996L, 10997L, 10998L, 10999L, 11000L,
11001L, 11002L, 11003L, 11004L, 11005L, 11006L, 11007L, 11008L,
11009L, 11012L, 11013L, 11014L, 11015L, 11016L, 11017L, 11018L,
11019L, 11020L, 11021L, 11022L, 11023L, 11024L, 11025L, 11026L,
11027L, 11028L, 11029L, 11030L, 11031L, 11032L, 11033L, 11034L,
11035L, 11036L, 11037L, 11038L, 11039L, 11040L, 11041L, 11042L,
11043L, 11044L, 11045L, 11046L, 11047L, 11048L, 11049L, 11050L,
11051L, 11052L, 11053L, 11054L, 11055L, 11056L, 11057L, 11058L,
11059L, 11060L, 11061L, 11062L, 11063L, 11064L, 11065L, 11066L,
11067L, 11068L, 11069L, 11070L, 11071L, 11072L, 11073L, 11074L,
11075L, 11076L, 11077L, 11078L, 11079L, 11080L, 11081L, 11082L,
11083L, 11084L, 11085L, 11086L, 11087L, 11088L, 11089L, 11090L,
11091L, 11092L, 11093L, 11094L, 11096L, 11097L, 11098L, 11099L,
11100L, 11101L, 11102L, 11103L, 11104L, 11105L, 11106L, 11107L,
11108L, 11109L, 11110L, 11111L, 11112L, 11113L, 11114L, 11115L,
11116L, 11117L, 11118L, 11119L, 11120L, 11121L, 11122L, 11123L,
11124L, 11125L, 11126L, 11127L, 11128L, 11129L, 11131L, 11132L,
11133L, 11134L, 11135L, 11136L, 11137L, 11138L, 11139L, 11140L,
11141L, 11142L, 11143L, 11144L, 11145L, 11146L, 11147L, 11148L,
11149L, 11150L, 11151L, 11152L, 11153L, 11154L, 11155L, 11156L,
11157L, 11158L, 11159L, 11160L, 11161L, 11162L, 11163L, 11164L,
11165L, 11166L, 11167L, 11168L, 11169L, 11170L, 11171L, 11172L,
11173L, 11174L, 11175L, 11176L, 11177L, 11178L, 11179L, 11180L,
11181L, 11182L, 11183L, 11184L, 11185L, 11186L, 11187L, 11188L,
11189L, 11190L, 11191L, 11192L, 11193L, 11194L, 11195L, 11196L,
11197L, 11198L, 11199L, 11201L, 11202L, 11203L, 11204L, 11205L,
11206L, 11207L, 11208L, 11209L, 11210L, 11211L, 11212L, 11213L,
11214L, 11215L, 11216L, 11217L, 11218L, 11219L, 11220L, 11221L,
11223L, 11224L, 11225L, 11226L, 11228L, 11229L, 11230L, 11231L,
11232L, 11233L, 11234L, 11235L, 11236L, 11237L, 11238L, 11239L,
11240L, 11241L, 11242L, 11243L, 11244L, 11245L, 11246L, 11247L,
11248L, 11249L, 11250L, 11251L, 11252L, 11253L, 11254L, 11255L,
11256L, 11257L, 11258L, 11259L, 11260L, 11261L, 11262L, 11263L,
11264L, 11265L, 11266L, 11267L, 11268L, 11269L, 11270L, 11271L,
11272L, 11273L, 11274L, 11275L, 11276L, 11277L, 11278L, 11279L,
11280L, 11281L, 11282L, 11283L, 11284L, 11285L, 11286L, 11287L,
11288L, 11289L, 11290L, 11291L, 11292L, 11293L, 11294L, 11295L,
11296L, 11297L, 11298L, 11299L, 11300L, 11302L, 11303L, 11304L,
11305L, 11306L, 11307L, 11308L, 11309L, 11310L, 11311L, 11312L,
11313L, 11314L, 11315L, 11316L, 11317L, 11318L, 11319L, 11320L,
11321L, 11322L, 11323L, 11324L, 11325L, 11326L, 11327L, 11328L,
11329L, 11330L, 11331L, 11332L, 11333L, 11334L, 11335L, 11336L,
11337L, 11338L, 11339L, 11341L, 11343L, 11344L, 11345L, 11346L,
11347L, 11348L, 11349L, 11350L, 11351L, 11352L, 11353L, 11354L,
11355L, 11356L, 11357L, 11358L, 11359L, 11360L, 11361L, 11362L,
11363L, 11364L, 11365L, 11366L, 11367L, 11368L, 11369L, 11370L,
11371L, 11372L, 11373L, 11374L, 11375L, 11378L, 11379L, 11380L,
11381L, 11382L, 11383L, 11384L, 11385L, 11386L, 11387L, 11388L,
11389L, 11390L, 11391L, 11392L, 11393L, 11394L, 11395L, 11396L,
11397L, 11398L, 11399L, 11400L, 11401L, 11402L, 11403L, 11404L,
11405L, 11406L, 11407L, 11408L, 11409L, 11410L, 11411L, 11412L,
11413L, 11414L, 11415L, 11416L, 11417L, 11418L, 11419L, 11420L,
11421L, 11422L, 11423L, 11424L, 11425L, 11426L, 11427L, 11428L,
11429L, 11430L, 11431L, 11432L, 11433L, 11434L, 11435L, 11436L,
11437L, 11438L, 11439L, 11440L, 11441L, 11442L, 11443L, 11444L,
11445L, 11446L, 11447L, 11448L, 11450L, 11451L, 11452L, 11453L,
11454L, 11455L, 11456L, 11457L, 11458L, 11459L, 11460L, 11461L,
11462L, 11463L, 11464L, 11465L, 11466L, 11467L, 11468L, 11469L,
11470L, 11471L, 11472L, 11473L, 11474L, 11475L, 11476L, 11477L,
11478L, 11479L, 11480L, 11481L, 11482L, 11483L, 11484L, 11485L,
11486L, 11488L, 11489L, 11490L, 11491L, 11492L, 11493L, 11494L,
11495L, 11496L, 11497L, 11498L, 11499L, 11500L, 11501L, 11502L,
11503L, 11504L, 11505L, 11506L, 11507L, 11508L, 11509L, 11510L,
11511L, 11512L, 11513L, 11514L, 11515L, 11516L, 11517L, 11518L,
11519L, 11520L, 11521L, 11522L, 11523L, 11524L, 11525L, 11526L,
11527L, 11528L, 11529L, 11530L, 11532L, 11533L, 11534L, 11535L,
11536L, 11537L, 11538L, 11539L, 11541L, 11542L, 11543L, 11544L,
11545L, 11546L, 11547L, 11548L, 11549L, 11550L, 11551L, 11552L,
11553L, 11554L, 11555L, 11556L, 11557L, 11558L, 11559L, 11560L,
11561L, 11562L, 11563L, 11564L, 11565L, 11566L, 11567L, 11568L,
11569L, 11570L, 11571L, 11572L, 11573L, 11574L, 11575L, 11576L,
11577L, 11578L, 11579L, 11580L, 11581L, 11582L, 11584L, 11585L,
11586L, 11587L, 11588L, 11589L, 11590L, 11591L, 11592L, 11593L,
11594L, 11595L, 11596L, 11597L, 11598L, 11599L, 11600L, 11601L,
11602L, 11603L, 11604L, 11605L, 11606L, 11607L, 11608L, 11609L,
11610L, 11611L, 11612L, 11613L, 11614L, 11615L, 11616L, 11617L,
11618L, 11619L, 11620L, 11621L, 11622L, 11623L, 11624L, 11625L,
11626L, 11627L, 11628L, 11629L, 11630L, 11631L, 11632L, 11633L,
11634L, 11635L, 11636L, 11637L, 11638L, 11639L, 11640L, 11641L,
11642L, 11643L, 11644L, 11645L, 11646L, 11647L, 11648L, 11649L,
11650L, 11651L, 11652L, 11653L, 11654L, 11655L, 11656L, 11657L,
11658L, 11659L, 11660L, 11661L, 11662L, 11663L, 11664L, 11665L,
11666L, 11667L, 11668L, 11669L, 11670L, 11671L, 11672L, 11673L,
11674L, 11675L, 11676L, 11677L, 11678L, 11679L, 11680L, 11681L,
11682L, 11684L, 11685L, 11686L, 11687L, 11688L, 11689L, 11690L,
11691L, 11692L, 11693L, 11694L, 11695L, 11696L, 11697L, 11698L,
11699L, 11700L, 11701L, 11702L, 11703L, 11704L, 11705L, 11706L,
11707L, 11708L, 11709L, 11710L, 11711L, 11712L, 11713L, 11714L,
11715L, 11716L, 11717L, 11718L, 11719L, 11720L, 11721L, 11722L,
11723L, 11724L, 11725L, 11726L, 11727L, 11728L, 11729L, 11730L,
11731L, 11732L, 11733L, 11734L, 11735L, 11736L, 11737L, 11738L,
11739L, 11740L, 11741L, 11742L, 11743L, 11744L, 11746L, 11747L,
11748L, 11749L, 11750L, 11751L, 11752L, 11753L, 11754L, 11755L,
11756L, 11757L, 11758L, 11759L, 11760L, 11761L, 11762L, 11763L,
11764L, 11765L, 11766L, 11772L, 11773L, 11774L, 11775L, 11776L,
11777L, 11778L, 11779L, 11780L, 11781L, 11782L, 11783L, 11784L,
11785L, 11786L, 11787L, 11788L, 11789L, 11790L, 11791L, 11792L,
11793L, 11794L, 11795L, 11796L, 11797L, 11798L, 11799L, 11800L,
11801L, 11802L, 11803L, 11804L, 11805L, 11806L, 11807L, 11808L,
11809L, 11810L, 11811L, 11812L, 11813L, 11814L, 11815L, 11816L,
11817L, 11818L, 11819L, 11820L, 11821L, 11822L, 11823L, 11824L,
11825L, 11826L, 11827L, 11828L, 11829L, 11830L, 11831L, 11832L,
11833L, 11834L, 11835L, 11836L, 11837L, 11838L, 11841L, 11842L,
11843L, 11844L, 11845L, 11846L, 11848L, 11849L, 11850L, 11851L,
11852L, 11853L, 11855L, 11856L, 11857L, 11858L, 11859L, 11860L,
11861L, 11862L, 11863L, 11864L, 11865L, 11866L, 11867L, 11868L,
11869L, 11870L, 11871L, 11872L, 11873L, 11874L, 11875L, 11876L,
11877L, 11878L, 11879L, 11880L, 11881L, 11883L, 11884L, 11885L,
11886L, 11887L, 11888L, 11889L, 11890L, 11891L, 11892L, 11893L,
11894L, 11895L, 11896L, 11897L, 11898L, 11899L, 11900L, 11901L,
11902L, 11903L, 11904L, 11905L, 11906L, 11907L, 11908L, 11909L,
11910L, 11911L, 11912L, 11913L, 11914L, 11915L, 11916L, 11917L,
11918L, 11920L, 11921L, 11922L, 11923L, 11924L, 11925L, 11926L,
11927L, 11928L, 11929L, 11930L, 11931L, 11932L, 11933L, 11934L,
11935L, 11936L, 11937L, 11938L, 11939L, 11940L, 11941L, 11942L,
11943L, 11944L, 11945L, 11946L, 11947L, 11948L, 11949L, 11950L,
11951L, 11952L, 11953L, 11954L, 11955L, 11956L, 11957L, 11958L,
11959L, 11963L, 11964L, 11965L, 11966L, 11967L, 11968L, 11969L,
11970L, 11971L, 11972L, 11973L, 11974L, 11975L, 11976L, 11977L,
11978L, 11979L, 11980L, 11981L, 11982L, 11983L, 11984L, 11985L,
11986L, 11987L, 11988L, 11989L, 11990L, 11991L, 11992L, 11993L,
11994L, 11995L, 11996L, 11997L, 11998L, 11999L, 12000L, 12001L,
12002L, 12003L, 12004L, 12005L, 12006L, 12007L, 12008L, 12011L,
12012L, 12013L, 12014L, 12015L, 12016L, 12017L, 12018L, 12019L,
12020L, 12021L, 12022L, 12023L, 12024L, 12025L, 12026L, 12027L,
12028L, 12029L, 12030L, 12031L, 12032L, 12033L, 12034L, 12035L,
12036L, 12037L, 12038L, 12039L, 12040L, 12041L, 12042L, 12043L,
12044L, 12045L, 12046L, 12047L, 12048L, 12049L, 12050L, 12051L,
12052L, 12053L, 12054L, 12055L, 12056L, 12057L, 12058L, 12059L,
12060L, 12061L, 12062L, 12063L, 12064L, 12065L, 12066L, 12067L,
12068L, 12069L, 12070L, 12071L, 12072L, 12073L, 12074L, 12075L,
12076L, 12077L, 12078L, 12079L, 12080L, 12082L, 12083L, 12084L,
12085L, 12086L, 12087L, 12088L, 12089L, 12090L, 12091L, 12092L,
12093L, 12094L, 12095L, 12096L, 12097L, 12098L, 12099L, 12100L,
12101L, 12102L, 12103L, 12104L, 12105L, 12106L, 12107L, 12108L,
12109L, 12110L, 12111L, 12112L, 12113L, 12114L, 12115L, 12116L,
12117L, 12118L, 12119L, 12120L, 12121L, 12122L, 12123L, 12124L,
12125L, 12126L, 12127L, 12128L, 12129L, 12130L, 12131L, 12132L,
12133L, 12134L, 12135L, 12136L, 12137L, 12138L, 12139L, 12140L,
12141L, 12142L, 12143L, 12144L, 12145L, 12146L, 12147L, 12148L,
12149L, 12150L, 12151L, 12152L, 12153L, 12154L, 12155L, 12156L,
12157L, 12158L, 12159L, 12160L, 12161L, 12162L, 12163L, 12164L,
12165L, 12166L, 12167L, 12168L, 12170L, 12171L, 12172L, 12173L,
12174L, 12175L, 12176L, 12177L, 12178L, 12179L, 12180L, 12181L,
12182L, 12183L, 12184L, 12185L, 12186L, 12187L, 12188L, 12189L,
12190L, 12191L, 12192L, 12193L, 12194L, 12195L, 12196L, 12197L,
12198L, 12199L, 12200L, 12201L, 12202L, 12203L, 12204L, 12205L,
12206L, 12207L, 12208L, 12209L, 12210L, 12212L, 12213L, 12214L,
12215L, 12216L, 12217L, 12218L, 12219L, 12220L, 12221L, 12222L,
12223L, 12224L, 12225L, 12226L, 12227L, 12228L, 12229L, 12230L,
12231L, 12232L, 12233L, 12234L, 12235L, 12236L, 12237L, 12238L,
12239L, 12240L, 12241L, 12242L, 12243L, 12244L, 12245L, 12247L,
12248L, 12249L, 12250L, 12251L, 12252L, 12255L, 12256L, 12257L,
12258L, 12259L, 12261L, 12262L, 12263L, 12264L, 12265L, 12266L,
12267L, 12268L, 12269L, 12270L, 12271L, 12272L, 12273L, 12274L,
12275L, 12276L, 12277L, 12278L, 12279L, 12280L, 12281L, 12282L,
12283L, 12284L, 12285L, 12286L, 12288L, 12289L, 12290L, 12291L,
12292L, 12294L, 12295L, 12296L, 12297L, 12298L, 12299L, 12300L,
12301L, 12302L, 12303L, 12304L, 12305L, 12306L, 12307L, 12308L,
12309L, 12310L, 12311L, 12312L, 12313L, 12314L, 12315L, 12316L,
12317L, 12318L, 12319L, 12320L, 12321L, 12322L, 12323L, 12324L,
12325L, 12326L, 12327L, 12328L, 12329L, 12330L, 12331L, 12332L,
12333L, 12334L, 12335L, 12336L, 12337L, 12338L, 12339L, 12340L,
12341L, 12342L, 12343L, 12344L, 12346L, 12347L, 12348L, 12349L,
12350L, 12351L, 12352L, 12353L, 12355L, 12356L, 12357L, 12358L,
12359L, 12360L, 12361L, 12362L, 12363L, 12364L, 12365L, 12366L,
12367L, 12369L, 12370L, 12371L, 12372L, 12373L, 12375L, 12376L,
12377L, 12378L, 12379L, 12380L, 12381L, 12383L, 12384L, 12385L,
12386L, 12388L, 12389L, 12390L, 12391L, 12392L, 12393L, 12394L,
12395L, 12396L, 12397L, 12398L, 12399L, 12400L, 12401L, 12402L,
12403L, 12404L, 12406L, 12407L, 12408L, 12409L, 12410L, 12411L,
12412L, 12413L, 12414L, 12415L, 12416L, 12417L, 12419L, 12420L,
12421L, 12422L, 12423L, 12424L, 12425L, 12426L, 12427L, 12428L,
12429L, 12430L, 12431L, 12432L, 12433L, 12434L, 12435L, 12436L,
12437L, 12438L, 12439L, 12440L, 12441L, 12442L, 12443L, 12445L,
12446L, 12447L, 12448L, 12449L, 12450L, 12451L, 12452L, 12453L,
12454L, 12455L, 12456L, 12457L, 12458L, 12459L, 12460L, 12461L,
12462L, 12463L, 12464L, 12465L, 12466L, 12467L, 12468L, 12469L,
12470L, 12471L, 12472L, 12473L, 12474L, 12475L, 12476L, 12477L,
12478L, 12479L, 12480L, 12481L, 12482L, 12483L, 12484L, 12485L,
12486L, 12487L, 12488L, 12489L, 12490L, 12491L, 12492L, 12493L,
12494L, 12495L, 12496L, 12497L, 12498L, 12499L, 12500L, 12501L,
12502L, 12503L, 12504L, 12505L, 12506L, 12507L, 12508L, 12509L,
12511L, 12512L, 12513L, 12514L, 12515L, 12516L, 12517L, 12518L,
12519L, 12520L, 12521L, 12522L, 12523L, 12524L, 12526L, 12527L,
12528L, 12529L, 12530L, 12531L, 12532L, 12533L, 12534L, 12535L,
12536L, 12538L, 12539L, 12540L, 12541L, 12543L, 12544L, 12545L,
12546L, 12547L, 12548L, 12549L, 12550L, 12551L, 12552L, 12553L,
12554L, 12555L, 12556L, 12557L, 12558L, 12560L, 12561L, 12562L,
12563L, 12564L, 12565L, 12566L, 12567L, 12568L, 12569L, 12570L,
12571L, 12572L, 12573L, 12574L, 12576L, 12577L, 12578L, 12579L,
12580L, 12581L, 12582L, 12583L, 12584L, 12585L, 12586L, 12587L,
12588L, 12589L, 12590L, 12591L, 12592L, 12593L, 12595L, 12596L,
12597L, 12598L, 12599L, 12601L, 12602L, 12603L, 12604L, 12605L,
12606L, 12607L, 12608L, 12609L, 12610L, 12611L, 12612L, 12613L,
12614L, 12615L, 12616L, 12617L, 12618L, 12619L, 12620L, 12621L,
12622L, 12623L, 12624L, 12625L, 12626L, 12627L, 12628L, 12629L,
12630L, 12631L, 12632L, 12633L, 12634L, 12635L, 12636L, 12637L,
12638L, 12639L, 12640L, 12641L, 12642L, 12643L, 12644L, 12645L,
12646L, 12647L, 12648L, 12650L, 12651L, 12652L, 12653L, 12654L,
12655L, 12656L, 12657L, 12658L, 12659L, 12660L, 12661L, 12662L,
12663L, 12664L, 12665L, 12666L, 12667L, 12668L, 12670L, 12671L,
12672L, 12673L, 12674L, 12675L, 12676L, 12677L, 12678L, 12679L,
12680L, 12681L, 12682L, 12683L, 12684L, 12685L, 12686L, 12687L,
12688L, 12689L, 12690L, 12691L, 12692L, 12693L, 12694L, 12695L,
12696L, 12697L, 12698L, 12699L, 12700L, 12701L, 12702L, 12703L,
12704L, 12705L, 12706L, 12707L, 12708L, 12709L, 12710L, 12711L,
12712L, 12713L, 12714L, 12715L, 12716L, 12717L, 12718L, 12719L,
12720L, 12721L, 12722L, 12723L, 12724L, 12725L, 12726L, 12727L,
12728L, 12729L, 12730L, 12731L, 12732L, 12733L, 12734L, 12736L,
12737L, 12738L, 12739L, 12740L, 12741L, 12742L, 12743L, 12744L,
12745L, 12746L, 12747L, 12748L, 12749L, 12750L, 12751L, 12752L,
12753L, 12754L, 12755L, 12756L, 12757L, 12758L, 12759L, 12760L,
12762L, 12763L, 12764L, 12765L, 12766L, 12767L, 12769L, 12770L,
12771L, 12772L, 12773L, 12774L, 12775L, 12776L, 12777L, 12778L,
12779L, 12780L, 12781L, 12782L, 12783L, 12784L, 12785L, 12786L,
12787L, 12788L, 12789L, 12790L, 12791L, 12792L, 12793L, 12795L,
12796L, 12797L, 12798L, 12799L, 12800L, 12801L, 12802L, 12803L,
12804L, 12805L, 12806L, 12807L, 12808L, 12809L, 12810L, 12811L,
12812L, 12813L, 12814L, 12815L, 12816L, 12817L, 12818L, 12819L,
12820L, 12821L, 12822L, 12823L, 12824L, 12825L, 12826L, 12827L,
12828L, 12829L, 12830L, 12831L, 12832L, 12833L, 12834L, 12835L,
12836L, 12837L, 12838L, 12839L, 12840L, 12841L, 12842L, 12843L,
12844L, 12845L, 12846L, 12847L, 12848L, 12849L, 12850L, 12851L,
12852L, 12853L, 12854L, 12855L, 12856L, 12857L, 12858L, 12859L,
12860L, 12861L, 12862L, 12863L, 12864L, 12865L, 12866L, 12867L,
12868L, 12869L, 12870L, 12871L, 12872L, 12873L, 12874L, 12875L,
12876L, 12877L, 12878L, 12879L, 12880L, 12881L, 12882L, 12883L,
12885L, 12886L, 12887L, 12888L, 12889L, 12890L, 12891L, 12892L,
12893L, 12894L, 12895L, 12896L, 12897L, 12898L, 12899L, 12900L,
12901L, 12902L, 12903L, 12904L, 12905L, 12906L, 12907L, 12908L,
12909L, 12910L, 12911L, 12912L, 12913L, 12914L, 12915L, 12916L,
12917L, 12918L, 12919L, 12920L, 12921L, 12922L, 12923L, 12924L,
12925L, 12926L, 12927L, 12928L, 12929L, 12930L, 12931L, 12932L,
12933L, 12934L, 12935L, 12936L, 12937L, 12938L, 12939L, 12940L,
12941L, 12942L, 12943L, 12944L, 12945L, 12946L, 12947L, 12948L,
12949L, 12950L, 12951L, 12952L, 12953L, 12954L, 12955L, 12956L,
12957L, 12958L, 12959L, 12960L, 12961L, 12962L, 12963L, 12964L,
12965L, 12966L, 12967L, 12968L, 12969L, 12970L, 12971L, 12972L,
12973L, 12974L, 12975L, 12976L, 12977L, 12978L, 12979L, 12980L,
12981L, 12982L, 12983L, 12984L, 12985L, 12986L, 12987L, 12988L,
12989L, 12990L, 12991L, 12992L, 12993L, 12994L, 12995L, 12996L,
12997L, 12998L, 12999L, 13000L, 13001L, 13002L, 13003L, 13004L,
13005L, 13006L, 13007L, 13008L, 13009L, 13010L, 13011L, 13012L,
13013L, 13014L, 13015L, 13016L, 13017L, 13018L, 13019L, 13020L,
13021L, 13022L, 13023L, 13024L, 13025L, 13026L, 13027L, 13028L,
13029L, 13030L, 13031L, 13032L, 13033L, 13034L, 13035L, 13036L,
13037L, 13038L, 13039L, 13040L, 13041L, 13042L, 13043L, 13044L,
13045L, 13046L, 13047L, 13048L, 13049L, 13050L, 13051L, 13052L,
13053L, 13054L, 13055L, 13056L, 13057L, 13058L, 13059L, 13060L,
13061L, 13062L, 13063L, 13064L, 13065L, 13066L, 13067L, 13068L,
13069L, 13070L, 13071L, 13072L, 13073L, 13074L, 13075L, 13076L,
13077L, 13078L, 13079L, 13080L, 13081L, 13082L, 13083L, 13084L,
13085L, 13086L, 13087L, 13088L, 13089L, 13090L, 13091L, 13092L,
13093L, 13094L, 13095L, 13096L, 13097L, 13098L, 13099L, 13100L,
13101L, 13102L, 13103L, 13104L, 13105L, 13106L, 13107L, 13108L,
13109L, 13110L, 13111L, 13112L, 13113L, 13114L, 13115L, 13116L,
13117L, 13118L, 13119L, 13120L, 13121L, 13122L, 13123L, 13124L,
13125L, 13126L, 13127L, 13128L, 13129L, 13130L, 13131L, 13132L,
13133L, 13134L, 13135L, 13136L, 13137L, 13138L, 13139L, 13140L,
13141L, 13142L, 13143L, 13144L, 13145L, 13146L, 13147L, 13148L,
13149L, 13151L, 13152L, 13153L, 13154L, 13155L, 13156L, 13157L,
13158L, 13159L, 13160L, 13161L, 13162L, 13163L, 13164L, 13165L,
13166L, 13167L, 13168L, 13169L, 13170L, 13171L, 13172L, 13173L,
13174L, 13175L, 13176L, 13177L, 13178L, 13179L, 13180L, 13181L,
13182L, 13183L, 13184L, 13185L, 13186L, 13187L, 13188L, 13189L,
13190L, 13191L, 13192L, 13193L, 13194L, 13195L, 13196L, 13197L,
13198L, 13199L, 13200L, 13201L, 13202L, 13203L, 13204L, 13205L,
13206L, 13207L, 13208L, 13209L, 13210L, 13211L, 13212L, 13213L,
13214L, 13215L, 13216L, 13217L, 13218L, 13219L, 13220L, 13221L,
13222L, 13223L, 13224L, 13225L, 13226L, 13227L, 13228L, 13229L,
13230L, 13231L, 13232L, 13233L, 13234L, 13235L, 13236L, 13237L,
13238L, 13239L, 13240L, 13241L, 13242L, 13243L, 13244L, 13245L,
13246L, 13247L, 13248L, 13249L, 13250L, 13251L, 13252L, 13253L,
13254L, 13255L, 13256L, 13257L, 13258L, 13259L, 13260L, 13261L,
13262L, 13263L, 13264L, 13265L, 13266L, 13267L, 13268L, 13269L,
13270L, 13271L, 13272L, 13273L, 13274L, 13275L, 13276L, 13277L,
13278L, 13279L, 13280L, 13281L, 13282L, 13283L, 13284L, 13285L,
13286L, 13287L, 13288L, 13289L, 13290L, 13291L, 13292L, 13293L,
13294L, 13295L, 13296L, 13297L, 13298L, 13299L, 13300L, 13301L,
13302L, 13303L, 13304L, 13305L, 13306L, 13307L, 13308L, 13309L,
13310L, 13311L, 13312L, 13314L, 13315L, 13316L, 13317L, 13318L,
13319L, 13320L, 13322L, 13323L, 13324L, 13325L, 13326L, 13327L,
13329L, 13330L, 13331L, 13332L, 13333L, 13334L, 13335L, 13336L,
13338L, 13339L, 13340L, 13341L, 13342L, 13343L, 13344L, 13345L,
13346L, 13347L, 13348L, 13349L, 13350L, 13351L, 13352L, 13353L,
13354L, 13355L, 13356L, 13357L, 13358L, 13359L, 13360L, 13361L,
13362L, 13363L, 13364L, 13365L, 13366L, 13367L, 13368L, 13369L,
13370L, 13371L, 13372L, 13373L, 13374L, 13375L, 13376L, 13377L,
13378L, 13379L, 13380L, 13381L, 13382L, 13383L, 13384L, 13385L,
13386L, 13387L, 13388L, 13389L, 13390L, 13391L, 13392L, 13393L,
13394L, 13395L, 13396L, 13397L, 13398L, 13399L, 13400L, 13401L,
13402L, 13403L, 13404L, 13405L, 13406L, 13407L, 13408L, 13409L,
13410L, 13411L, 13412L, 13413L, 13415L, 13416L, 13417L, 13418L,
13419L, 13420L, 13421L, 13422L, 13423L, 13424L, 13425L, 13426L,
13427L, 13428L, 13429L, 13430L, 13431L, 13432L, 13433L, 13434L,
13435L, 13436L, 13437L, 13438L, 13439L, 13440L, 13441L, 13443L,
13444L, 13445L, 13446L, 13447L, 13448L, 13449L, 13450L, 13451L,
13452L, 13453L, 13454L, 13455L, 13456L, 13457L, 13459L, 13460L,
13461L, 13462L, 13463L, 13464L, 13465L, 13466L, 13467L, 13468L,
13469L, 13470L, 13472L, 13473L, 13474L, 13475L, 13476L, 13477L,
13478L, 13479L, 13480L, 13481L, 13482L, 13483L, 13484L, 13485L,
13486L, 13487L, 13488L, 13489L, 13490L, 13491L, 13492L, 13493L,
13494L, 13495L, 13496L, 13497L, 13498L, 13499L, 13500L, 13501L,
13502L, 13503L, 13504L, 13505L, 13506L, 13507L, 13508L, 13509L,
13510L, 13511L, 13512L, 13513L, 13514L, 13515L, 13516L, 13517L,
13518L, 13519L, 13520L, 13521L, 13522L, 13523L, 13524L, 13525L,
13526L, 13527L, 13528L, 13529L, 13530L, 13531L, 13532L, 13533L,
13534L, 13535L, 13536L, 13537L, 13538L, 13539L, 13540L, 13541L,
13542L, 13543L, 13544L, 13545L, 13546L, 13547L, 13548L, 13549L,
13550L, 13551L, 13552L, 13553L, 13554L, 13555L, 13556L, 13557L,
13558L, 13559L, 13560L, 13561L, 13563L, 13564L, 13566L, 13567L,
13568L, 13569L, 13570L, 13571L, 13572L, 13573L, 13574L, 13575L,
13576L, 13577L, 13578L, 13579L, 13580L, 13581L, 13582L, 13583L,
13584L, 13585L, 13586L, 13587L, 13588L, 13589L, 13590L, 13591L,
13592L, 13593L, 13594L, 13595L, 13596L, 13597L, 13598L, 13599L,
13600L, 13601L, 13602L, 13604L, 13605L, 13606L, 13607L, 13608L,
13609L, 13610L, 13611L, 13612L, 13613L, 13614L, 13615L, 13616L,
13617L, 13618L, 13619L, 13620L, 13621L, 13622L, 13623L, 13625L,
13626L, 13627L, 13628L, 13629L, 13630L, 13631L, 13632L, 13633L,
13634L, 13635L, 13637L, 13638L, 13639L, 13640L, 13641L, 13642L,
13643L, 13644L, 13645L, 13646L, 13647L, 13648L, 13649L, 13650L,
13651L, 13652L, 13653L, 13654L, 13655L, 13656L, 13657L, 13658L,
13660L, 13661L, 13662L, 13663L, 13664L, 13665L, 13666L, 13667L,
13668L, 13669L, 13670L, 13671L, 13672L, 13673L, 13674L, 13675L,
13676L, 13677L, 13678L, 13679L, 13680L, 13681L, 13682L, 13683L,
13685L, 13686L, 13687L, 13689L, 13690L, 13691L, 13692L, 13693L,
13694L, 13695L, 13696L, 13697L, 13698L, 13699L, 13700L, 13701L,
13702L, 13703L, 13704L, 13705L, 13706L, 13707L, 13708L, 13709L,
13710L, 13711L, 13712L, 13713L, 13714L, 13715L, 13716L, 13717L,
13718L, 13719L, 13720L, 13721L, 13722L, 13723L, 13724L, 13725L,
13726L, 13727L, 13728L, 13729L, 13730L, 13731L, 13732L, 13733L,
13734L, 13735L, 13736L, 13737L, 13738L, 13739L, 13740L, 13741L,
13742L, 13743L, 13744L, 13745L, 13746L, 13747L, 13748L, 13749L,
13750L, 13751L, 13752L, 13753L, 13754L, 13755L, 13756L, 13757L,
13758L, 13759L, 13760L, 13761L, 13762L, 13763L, 13764L, 13765L,
13766L, 13767L, 13768L, 13769L, 13770L, 13771L, 13772L, 13773L,
13774L, 13776L, 13777L, 13778L, 13779L, 13780L, 13781L, 13782L,
13783L, 13784L, 13785L, 13786L, 13787L, 13788L, 13789L, 13791L,
13792L, 13793L, 13794L, 13795L, 13796L, 13797L, 13798L, 13799L,
13800L, 13801L, 13802L, 13803L, 13804L, 13805L, 13806L, 13807L,
13808L, 13809L, 13810L, 13811L, 13812L, 13813L, 13814L, 13815L,
13816L, 13817L, 13818L, 13819L, 13820L, 13821L, 13822L, 13823L,
13824L, 13825L, 13826L, 13827L, 13830L, 13831L, 13833L, 13834L,
13835L, 13836L, 13837L, 13838L, 13839L, 13840L, 13841L, 13842L,
13843L, 13844L, 13845L, 13846L, 13847L, 13848L, 13849L, 13850L,
13851L, 13852L, 13853L, 13854L, 13855L, 13857L, 13858L, 13859L,
13860L, 13861L, 13862L, 13863L, 13864L, 13865L, 13866L, 13867L,
13868L, 13869L, 13870L, 13871L, 13872L, 13873L, 13874L, 13875L,
13876L, 13877L, 13878L, 13879L, 13880L, 13881L, 13882L, 13883L,
13884L, 13885L, 13886L, 13887L, 13888L, 13889L, 13890L, 13891L,
13892L, 13893L, 13894L, 13895L, 13896L, 13898L, 13899L, 13900L,
13902L, 13903L, 13904L, 13905L, 13906L, 13907L, 13908L, 13909L,
13910L, 13911L, 13912L, 13913L, 13914L, 13915L, 13916L, 13917L,
13918L, 13919L, 13920L, 13921L, 13922L, 13924L, 13925L, 13926L,
13927L, 13928L, 13929L, 13930L, 13931L, 13932L, 13933L, 13934L,
13935L, 13936L, 13937L, 13938L, 13939L, 13940L, 13941L, 13942L,
13943L, 13944L, 13945L, 13946L, 13947L, 13948L, 13949L, 13950L,
13951L, 13952L, 13953L, 13954L, 13955L, 13956L, 13957L, 13958L,
13959L, 13960L, 13961L, 13962L, 13963L, 13964L, 13965L, 13966L,
13967L, 13968L, 13969L, 13971L, 13972L, 13973L, 13974L, 13975L,
13976L, 13977L, 13978L, 13980L, 13981L, 13982L, 13983L, 13984L,
13985L, 13986L, 13987L, 13988L, 13989L, 13990L, 13991L, 13992L,
13993L, 13994L, 13995L, 13996L, 13997L, 13998L, 13999L, 14000L,
14001L, 14002L, 14003L, 14004L, 14005L, 14006L, 14007L, 14009L,
14011L, 14012L, 14013L, 14014L, 14015L, 14018L, 14019L, 14020L,
14021L, 14022L, 14023L, 14024L, 14025L, 14026L, 14027L, 14028L,
14029L, 14030L, 14031L, 14032L, 14033L, 14035L, 14036L, 14037L,
14038L, 14040L, 14041L, 14042L, 14043L, 14044L, 14045L, 14046L,
14047L, 14048L, 14049L, 14050L, 14051L, 14052L, 14053L, 14056L,
14057L, 14058L, 14059L, 14061L, 14062L, 14063L, 14064L, 14065L,
14066L, 14067L, 14068L, 14069L, 14070L, 14074L, 14076L, 14079L,
14080L, 14081L, 14082L, 14084L, 14086L, 14088L, 14089L, 14091L,
14092L, 14093L, 14094L, 14095L, 14096L, 14097L, 14098L, 14099L,
14100L, 14101L, 14102L, 14103L, 14104L, 14105L, 14107L, 14108L,
14109L, 14110L, 14111L, 14112L, 14113L, 14114L, 14115L, 14116L,
14117L, 14118L, 14119L, 14120L, 14121L, 14123L, 14124L, 14125L,
14126L, 14127L, 14128L, 14129L, 14130L, 14131L, 14132L, 14133L,
14134L, 14135L, 14136L, 14137L, 14138L, 14139L, 14140L, 14141L,
14142L, 14143L, 14144L, 14145L, 14146L, 14147L, 14148L, 14149L,
14150L, 14151L, 14152L, 14153L, 14154L, 14155L, 14157L, 14159L,
14160L, 14161L, 14162L, 14163L, 14164L, 14165L, 14166L, 14167L,
14168L, 14169L, 14170L, 14171L, 14172L, 14173L, 14174L, 14175L,
14176L, 14177L, 14178L, 14179L, 14180L, 14181L, 14183L, 14184L,
14185L, 14186L, 14187L, 14188L, 14189L, 14190L, 14191L, 14192L,
14193L, 14194L, 14195L, 14197L, 14198L, 14199L, 14200L, 14201L,
14202L, 14203L, 14204L, 14205L, 14206L, 14207L, 14208L, 14209L,
14210L, 14211L, 14212L, 14214L, 14215L, 14216L, 14217L, 14218L,
14219L, 14220L, 14221L, 14222L, 14225L, 14226L, 14227L, 14228L,
14229L, 14230L, 14231L, 14232L, 14234L, 14235L, 14236L, 14237L,
14238L, 14239L, 14240L, 14241L, 14242L, 14243L, 14244L, 14245L,
14246L, 14247L, 14248L, 14249L, 14251L, 14252L, 14253L, 14254L,
14255L, 14256L, 14257L, 14258L, 14259L, 14260L, 14261L, 14262L,
14263L, 14264L, 14265L, 14266L, 14267L, 14268L, 14269L, 14270L,
14271L, 14272L, 14273L, 14274L, 14275L, 14276L, 14277L, 14279L,
14280L, 14281L, 14282L, 14283L, 14284L, 14285L, 14286L, 14287L,
14288L, 14289L, 14290L, 14291L, 14292L, 14293L, 14294L, 14295L,
14296L, 14297L, 14299L, 14300L, 14301L, 14302L, 14303L, 14304L,
14305L, 14306L, 14307L, 14308L, 14309L, 14310L, 14311L, 14312L,
14313L, 14314L, 14315L, 14316L, 14317L, 14318L, 14319L, 14320L,
14321L, 14322L, 14323L, 14324L, 14325L, 14326L, 14327L, 14328L,
14329L, 14330L, 14331L, 14332L, 14333L, 14334L, 14335L, 14336L,
14337L, 14338L, 14339L, 14340L, 14341L, 14342L, 14343L, 14344L,
14345L, 14346L, 14347L, 14348L, 14349L, 14350L, 14352L, 14353L,
14354L, 14355L, 14356L, 14357L, 14358L, 14359L, 14360L, 14361L,
14362L, 14363L, 14364L, 14365L, 14366L, 14367L, 14369L, 14370L,
14371L, 14372L, 14373L, 14374L, 14375L, 14376L, 14377L, 14378L,
14379L, 14380L, 14381L, 14382L, 14383L, 14384L, 14385L, 14386L,
14387L, 14388L, 14389L, 14390L, 14391L, 14392L, 14393L, 14394L,
14395L, 14396L, 14397L, 14398L, 14399L, 14400L, 14401L, 14402L,
14403L, 14404L, 14405L, 14406L, 14407L, 14408L, 14409L, 14410L,
14411L, 14412L, 14413L, 14414L, 14415L, 14416L, 14417L, 14418L,
14419L, 14420L, 14421L, 14422L, 14423L, 14424L, 14425L, 14426L,
14427L, 14428L, 14429L, 14430L, 14431L, 14432L, 14433L, 14434L,
14435L, 14436L, 14437L, 14438L, 14439L, 14440L, 14441L, 14442L,
14443L, 14444L, 14445L, 14446L, 14447L, 14448L, 14449L, 14450L,
14451L, 14452L, 14453L, 14454L, 14455L, 14456L, 14457L, 14458L,
14459L, 14460L, 14461L, 14462L, 14463L, 14464L, 14465L, 14467L,
14468L, 14469L, 14470L, 14471L, 14472L, 14473L, 14474L, 14475L,
14476L, 14477L, 14478L, 14479L, 14480L, 14481L, 14486L, 14487L,
14488L, 14489L, 14490L, 14491L, 14492L, 14493L, 14494L, 14495L,
14496L, 14497L, 14498L, 14499L, 14500L, 14501L, 14502L, 14503L,
14504L, 14505L, 14506L, 14507L, 14508L, 14509L, 14510L, 14511L,
14512L, 14513L, 14514L, 14515L, 14516L, 14517L, 14518L, 14519L,
14520L, 14521L, 14522L, 14523L, 14524L, 14525L, 14526L, 14527L,
14528L, 14529L, 14530L, 14531L, 14532L, 14533L, 14534L, 14535L,
14536L, 14537L, 14538L, 14539L, 14540L, 14541L, 14542L, 14543L,
14544L, 14545L, 14546L, 14547L, 14548L, 14549L, 14550L, 14551L,
14552L, 14553L, 14554L, 14555L, 14556L, 14557L, 14558L, 14559L,
14560L, 14561L, 14562L, 14563L, 14564L, 14565L, 14566L, 14567L,
14568L, 14569L, 14570L, 14571L, 14572L, 14573L, 14574L, 14575L,
14576L, 14577L, 14578L, 14579L, 14580L, 14581L, 14582L, 14583L,
14584L, 14585L, 14586L, 14588L, 14589L, 14590L, 14591L, 14592L,
14593L, 14594L, 14595L, 14596L, 14597L, 14598L, 14599L, 14600L,
14601L, 14602L, 14603L, 14604L, 14605L, 14606L, 14607L, 14608L,
14609L, 14610L, 14611L, 14612L, 14613L, 14614L, 14615L, 14616L,
14617L, 14618L, 14619L, 14620L, 14621L, 14623L, 14624L, 14625L,
14626L, 14627L, 14628L, 14629L, 14630L, 14631L, 14632L, 14633L,
14634L, 14635L, 14636L, 14637L, 14638L, 14639L, 14640L, 14641L,
14642L, 14643L, 14644L, 14645L, 14646L, 14647L, 14648L, 14649L,
14650L, 14651L, 14652L, 14653L, 14654L, 14655L, 14656L, 14657L,
14658L, 14659L, 14660L, 14661L, 14662L, 14663L, 14664L, 14665L,
14666L, 14667L, 14668L, 14669L, 14670L, 14671L, 14672L, 14673L,
14674L, 14675L, 14676L, 14677L, 14678L, 14679L, 14680L, 14682L,
14683L, 14684L, 14685L, 14686L, 14687L, 14688L, 14689L, 14690L,
14691L, 14692L, 14693L, 14695L, 14696L, 14697L, 14698L, 14699L,
14700L, 14701L, 14702L, 14703L, 14704L, 14705L, 14706L, 14707L,
14708L, 14709L, 14710L, 14711L, 14712L, 14713L, 14714L, 14715L,
14716L, 14717L, 14718L, 14719L, 14720L, 14721L, 14722L, 14723L,
14724L, 14725L, 14726L, 14727L, 14728L, 14729L, 14730L, 14731L,
14732L, 14733L, 14734L, 14735L, 14736L, 14737L, 14738L, 14739L,
14740L, 14742L, 14743L, 14744L, 14745L, 14746L, 14747L, 14748L,
14749L, 14750L, 14751L, 14752L, 14753L, 14754L, 14755L, 14756L,
14757L, 14758L, 14759L, 14760L, 14761L, 14762L, 14763L, 14764L,
14765L, 14766L, 14767L, 14768L, 14769L, 14770L, 14771L, 14772L,
14773L, 14774L, 14775L, 14776L, 14777L, 14778L, 14779L, 14780L,
14781L, 14782L, 14783L, 14784L, 14785L, 14786L, 14787L, 14788L,
14789L, 14790L, 14791L, 14792L, 14793L, 14794L, 14795L, 14796L,
14797L, 14798L, 14799L, 14800L, 14801L, 14802L, 14803L, 14804L,
14805L, 14806L, 14807L, 14808L, 14809L, 14810L, 14811L, 14812L,
14813L, 14814L, 14815L, 14816L, 14817L, 14818L, 14819L, 14820L,
14821L, 14822L, 14823L, 14824L, 14825L, 14826L, 14827L, 14828L,
14829L, 14830L, 14831L, 14832L, 14833L, 14834L, 14835L, 14836L,
14837L, 14838L, 14839L, 14840L, 14841L, 14842L, 14843L, 14844L,
14846L, 14847L, 14848L, 14849L, 14850L, 14851L, 14852L, 14853L,
14854L, 14855L, 14856L, 14857L, 14858L, 14859L, 14860L, 14861L,
14862L, 14863L, 14864L, 14865L, 14866L, 14867L, 14868L, 14869L,
14870L, 14871L, 14872L, 14873L, 14874L, 14875L, 14876L, 14877L,
14878L, 14879L, 14880L, 14881L, 14886L, 14887L, 14888L, 14889L,
14890L, 14891L, 14892L, 14894L, 14895L, 14896L, 14897L, 14898L,
14899L, 14900L, 14901L, 14902L, 14903L, 14904L, 14905L, 14906L,
14907L, 14908L, 14909L, 14910L, 14911L, 14912L, 14913L, 14914L,
14915L, 14916L, 14917L, 14918L, 14919L, 14920L, 14921L, 14922L,
14923L, 14924L, 14925L, 14926L, 14927L, 14928L, 14929L, 14930L,
14931L, 14932L, 14933L, 14934L, 14935L, 14937L, 14938L, 14939L,
14940L, 14941L, 14942L, 14943L, 14944L, 14945L, 14946L, 14947L,
14948L, 14949L, 14950L, 14951L, 14952L, 14953L, 14954L, 14955L,
14956L, 14957L, 14958L, 14959L, 14960L, 14961L, 14962L, 14963L,
14964L, 14965L, 14966L, 14967L, 14968L, 14969L, 14970L, 14971L,
14972L, 14973L, 14974L, 14975L, 14976L, 14977L, 14978L, 14979L,
14980L, 14981L, 14982L, 14983L, 14984L, 14985L, 14986L, 14987L,
14988L, 14989L, 14990L, 14991L, 14992L, 14993L, 14994L, 14995L,
14996L, 14997L, 14998L, 14999L, 15000L, 15001L, 15002L, 15003L,
15004L, 15005L, 15006L, 15007L, 15008L, 15009L, 15010L, 15011L,
15012L, 15013L, 15014L, 15015L, 15016L, 15017L, 15018L, 15019L,
15020L, 15021L, 15022L, 15023L, 15024L, 15025L, 15026L, 15027L,
15028L, 15029L, 15031L, 15032L, 15033L, 15034L, 15035L, 15036L,
15037L, 15038L, 15039L, 15040L, 15041L, 15042L, 15043L, 15044L,
15045L, 15046L, 15047L, 15048L, 15049L, 15050L, 15051L, 15052L,
15053L, 15054L, 15055L, 15056L, 15057L, 15058L, 15059L, 15060L,
15061L, 15062L, 15063L, 15064L, 15065L, 15066L, 15067L, 15068L,
15069L, 15070L, 15071L, 15072L, 15073L, 15074L, 15075L, 15076L,
15077L, 15078L, 15079L, 15080L, 15081L, 15082L, 15083L, 15084L,
15085L, 15086L, 15087L, 15088L, 15089L, 15090L, 15091L, 15092L,
15093L, 15094L, 15095L, 15096L, 15097L, 15098L, 15099L, 15100L,
15101L, 15102L, 15103L, 15104L, 15105L, 15106L, 15107L, 15108L,
15109L, 15110L, 15111L, 15112L, 15113L, 15114L, 15115L, 15116L,
15117L, 15118L, 15119L, 15120L, 15121L, 15122L, 15123L, 15124L,
15125L, 15126L, 15127L, 15128L, 15129L, 15130L, 15131L, 15132L,
15133L, 15134L, 15135L, 15136L, 15137L, 15138L, 15139L, 15140L,
15141L, 15142L, 15143L, 15144L, 15145L, 15146L, 15147L, 15148L,
15149L, 15150L, 15151L, 15152L, 15153L, 15154L, 15155L, 15156L,
15157L, 15158L, 15159L, 15160L, 15161L, 15162L, 15164L, 15165L,
15166L, 15167L, 15168L, 15169L, 15170L, 15171L, 15172L, 15173L,
15174L, 15175L, 15176L, 15177L, 15178L, 15179L, 15180L, 15181L,
15182L, 15183L, 15184L, 15185L, 15186L, 15187L, 15188L, 15189L,
15190L, 15191L, 15192L, 15193L, 15194L, 15195L, 15196L, 15197L,
15198L, 15199L, 15200L, 15201L, 15202L, 15203L, 15204L, 15205L,
15206L, 15207L, 15208L, 15209L, 15210L, 15211L, 15212L, 15213L,
15214L, 15215L, 15216L, 15217L, 15218L, 15219L, 15220L, 15221L,
15222L, 15223L, 15224L, 15225L, 15226L, 15227L, 15228L, 15230L,
15231L, 15232L, 15233L, 15234L, 15235L, 15236L, 15237L, 15238L,
15239L, 15240L, 15241L, 15242L, 15243L, 15244L, 15245L, 15246L,
15248L, 15249L, 15250L, 15251L, 15253L, 15254L, 15255L, 15256L,
15257L, 15258L, 15259L, 15260L, 15261L, 15262L, 15264L, 15265L,
15266L, 15267L, 15268L, 15269L, 15270L, 15271L, 15272L, 15273L,
15274L, 15275L, 15278L, 15279L, 15280L, 15281L, 15282L, 15283L,
15284L, 15285L, 15286L, 15287L, 15288L, 15289L, 15290L, 15291L,
15292L, 15293L, 15294L, 15295L, 15296L, 15297L, 15298L, 15299L,
15301L, 15302L, 15303L, 15304L, 15305L, 15306L, 15307L, 15308L,
15309L, 15310L, 15311L, 15313L, 15316L, 15317L, 15318L, 15319L,
15320L, 15321L, 15322L, 15323L, 15324L, 15325L, 15326L, 15327L,
15328L, 15329L, 15330L, 15331L, 15333L, 15334L, 15335L, 15336L,
15337L, 15338L, 15339L, 15340L, 15342L, 15343L, 15344L, 15345L,
15346L, 15347L, 15348L, 15349L, 15350L, 15351L, 15352L, 15354L,
15355L, 15357L, 15358L, 15359L, 15360L, 15361L, 15362L, 15363L,
15364L, 15365L, 15366L, 15367L, 15368L, 15369L, 15370L, 15371L,
15372L, 15373L, 15374L, 15375L, 15376L, 15377L, 15378L, 15379L,
15380L, 15381L, 15382L, 15383L, 15384L, 15385L, 15387L, 15388L,
15389L, 15390L, 15391L, 15392L, 15393L, 15394L, 15395L, 15396L,
15397L, 15398L, 15399L, 15400L, 15401L, 15402L, 15403L, 15404L,
15405L, 15406L, 15407L, 15408L, 15409L, 15410L, 15411L, 15412L,
15413L, 15414L, 15415L, 15416L, 15417L, 15418L, 15419L, 15420L,
15421L, 15422L, 15423L, 15424L, 15425L, 15427L, 15428L, 15430L,
15431L, 15433L, 15434L, 15435L, 15436L, 15437L, 15438L, 15439L,
15440L, 15441L, 15442L, 15443L, 15444L, 15445L, 15446L, 15447L,
15448L, 15449L, 15450L, 15451L, 15452L, 15453L, 15454L, 15455L,
15456L, 15457L, 15458L, 15459L, 15460L, 15462L, 15463L, 15464L,
15465L, 15466L, 15467L, 15468L, 15469L, 15470L, 15471L, 15472L,
15473L, 15474L, 15476L, 15477L, 15478L, 15479L, 15480L, 15481L,
15482L, 15483L, 15484L, 15485L, 15486L, 15487L, 15489L, 15490L,
15491L, 15492L, 15493L, 15494L, 15495L, 15496L, 15497L, 15498L,
15499L, 15500L, 15501L, 15502L, 15503L, 15505L, 15506L, 15507L,
15508L, 15509L, 15510L, 15511L, 15512L, 15513L, 15514L, 15515L,
15516L, 15517L, 15518L, 15519L, 15520L, 15521L, 15522L, 15523L,
15524L, 15525L, 15526L, 15527L, 15528L, 15529L, 15530L, 15531L,
15532L, 15533L, 15534L, 15535L, 15536L, 15537L, 15538L, 15539L,
15540L, 15541L, 15542L, 15543L, 15544L, 15545L, 15546L, 15547L,
15548L, 15549L, 15550L, 15551L, 15552L, 15553L, 15554L, 15555L,
15556L, 15557L, 15558L, 15559L, 15560L, 15561L, 15562L, 15563L,
15564L, 15565L, 15566L, 15567L, 15568L, 15569L, 15570L, 15571L,
15572L, 15573L, 15574L, 15575L, 15576L, 15577L, 15578L, 15579L,
15580L, 15581L, 15582L, 15583L, 15584L, 15585L, 15586L, 15587L,
15588L, 15589L, 15590L, 15591L, 15592L, 15593L, 15594L, 15595L,
15596L, 15597L, 15598L, 15599L, 15600L, 15601L, 15602L, 15603L,
15604L, 15605L, 15606L, 15607L, 15608L, 15609L, 15611L, 15612L,
15613L, 15614L, 15615L, 15616L, 15617L, 15618L, 15619L, 15620L,
15621L, 15622L, 15623L, 15624L, 15625L, 15626L, 15627L, 15628L,
15629L, 15630L, 15631L, 15632L, 15633L, 15634L, 15635L, 15636L,
15637L, 15638L, 15639L, 15640L, 15641L, 15642L, 15643L, 15644L,
15645L, 15646L, 15647L, 15648L, 15649L, 15650L, 15651L, 15652L,
15653L, 15654L, 15655L, 15656L, 15657L, 15658L, 15659L, 15660L,
15661L, 15662L, 15663L, 15664L, 15665L, 15666L, 15667L, 15668L,
15669L, 15670L, 15671L, 15672L, 15673L, 15674L, 15675L, 15676L,
15677L, 15678L, 15679L, 15680L, 15681L, 15682L, 15683L, 15684L,
15685L, 15686L, 15687L, 15688L, 15689L, 15690L, 15691L, 15692L,
15693L, 15694L, 15695L, 15696L, 15697L, 15698L, 15699L, 15700L,
15701L, 15702L, 15703L, 15704L, 15705L, 15706L, 15707L, 15708L,
15709L, 15710L, 15711L, 15712L, 15713L, 15714L, 15715L, 15716L,
15717L, 15718L, 15719L, 15720L, 15721L, 15722L, 15723L, 15724L,
15725L, 15726L, 15727L, 15728L, 15729L, 15730L, 15731L, 15732L,
15733L, 15734L, 15735L, 15736L, 15737L, 15739L, 15740L, 15741L,
15742L, 15743L, 15744L, 15745L, 15746L, 15747L, 15748L, 15749L,
15750L, 15751L, 15752L, 15753L, 15754L, 15755L, 15756L, 15757L,
15758L, 15759L, 15760L, 15761L, 15762L, 15763L, 15764L, 15765L,
15766L, 15768L, 15769L, 15770L, 15771L, 15772L, 15773L, 15774L,
15775L, 15776L, 15777L, 15778L, 15779L, 15780L, 15781L, 15782L,
15783L, 15784L, 15785L, 15786L, 15787L, 15788L, 15789L, 15790L,
15791L, 15792L, 15793L, 15794L, 15795L, 15796L, 15797L, 15798L,
15799L, 15800L, 15801L, 15802L, 15804L, 15805L, 15806L, 15807L,
15808L, 15809L, 15810L, 15811L, 15812L, 15813L, 15814L, 15815L,
15816L, 15817L, 15818L, 15819L, 15820L, 15821L, 15822L, 15823L,
15824L, 15825L, 15826L, 15827L, 15828L, 15829L, 15830L, 15831L,
15832L, 15833L, 15834L, 15835L, 15836L, 15837L, 15838L, 15839L,
15840L, 15841L, 15842L, 15843L, 15844L, 15845L, 15846L, 15847L,
15848L, 15849L, 15850L, 15851L, 15852L, 15853L, 15854L, 15855L,
15856L, 15857L, 15858L, 15859L, 15860L, 15861L, 15862L, 15863L,
15864L, 15865L, 15866L, 15867L, 15868L, 15869L, 15870L, 15871L,
15872L, 15873L, 15874L, 15875L, 15876L, 15877L, 15879L, 15880L,
15881L, 15882L, 15883L, 15884L, 15885L, 15886L, 15887L, 15888L,
15889L, 15890L, 15891L, 15892L, 15893L, 15894L, 15895L, 15896L,
15897L, 15898L, 15899L, 15900L, 15902L, 15903L, 15904L, 15905L,
15906L, 15907L, 15908L, 15909L, 15910L, 15911L, 15912L, 15913L,
15914L, 15915L, 15916L, 15917L, 15918L, 15919L, 15920L, 15921L,
15922L, 15923L, 15924L, 15925L, 15926L, 15927L, 15928L, 15929L,
15930L, 15931L, 15932L, 15933L, 15934L, 15936L, 15937L, 15938L,
15939L, 15940L, 15941L, 15942L, 15943L, 15944L, 15945L, 15946L,
15947L, 15948L, 15949L, 15950L, 15951L, 15952L, 15953L, 15954L,
15955L, 15956L, 15957L, 15958L, 15959L, 15960L, 15961L, 15962L,
15963L, 15964L, 15965L, 15966L, 15967L, 15968L, 15969L, 15970L,
15971L, 15972L, 15973L, 15974L, 15975L, 15976L, 15977L, 15978L,
15979L, 15980L, 15981L, 15982L, 15983L, 15984L, 15985L, 15986L,
15987L, 15988L, 15989L, 15990L, 15991L, 15992L, 15993L, 15994L,
15995L, 15996L, 15997L, 15998L, 15999L, 16000L, 16003L, 16004L,
16005L, 16006L, 16007L, 16008L, 16009L, 16010L, 16011L, 16012L,
16013L, 16014L, 16015L, 16016L, 16017L, 16018L, 16019L, 16020L,
16021L, 16022L, 16023L, 16024L, 16025L, 16026L, 16027L, 16028L,
16029L, 16030L, 16031L, 16032L, 16033L, 16034L, 16035L, 16036L,
16037L, 16038L, 16039L, 16040L, 16041L, 16042L, 16043L, 16044L,
16045L, 16046L, 16047L, 16048L, 16049L, 16050L, 16051L, 16052L,
16053L, 16054L, 16055L, 16056L, 16057L, 16058L, 16059L, 16060L,
16061L, 16062L, 16063L, 16064L, 16065L, 16066L, 16067L, 16068L,
16069L, 16070L, 16071L, 16072L, 16073L, 16074L, 16075L, 16076L,
16077L, 16078L, 16079L, 16080L, 16081L, 16082L, 16083L, 16084L,
16085L, 16086L, 16087L, 16088L, 16089L, 16090L, 16091L, 16092L,
16093L, 16094L, 16095L, 16096L, 16097L, 16098L, 16099L, 16100L,
16101L, 16102L, 16103L, 16104L, 16105L, 16106L, 16107L, 16108L,
16109L, 16110L, 16111L, 16112L, 16113L, 16114L, 16115L, 16116L,
16117L, 16118L, 16119L, 16120L, 16121L, 16122L, 16123L, 16124L,
16125L, 16126L, 16127L, 16128L, 16129L, 16130L, 16131L, 16132L,
16133L, 16134L, 16135L, 16136L, 16137L, 16138L, 16139L, 16140L,
16141L, 16142L, 16143L, 16144L, 16145L, 16146L, 16147L, 16148L,
16149L, 16150L, 16151L, 16152L, 16153L, 16154L, 16155L, 16156L,
16157L, 16158L, 16159L, 16160L, 16161L, 16162L, 16163L, 16164L,
16165L, 16166L, 16167L, 16168L, 16169L, 16170L, 16171L, 16172L,
16173L, 16174L, 16175L, 16176L, 16177L, 16178L, 16179L, 16180L,
16181L, 16182L, 16183L, 16184L, 16185L, 16186L, 16187L, 16188L,
16189L, 16190L, 16191L, 16192L, 16193L, 16194L, 16195L, 16196L,
16197L, 16198L, 16199L, 16200L, 16201L, 16202L, 16203L, 16204L,
16205L, 16206L, 16207L, 16208L, 16209L, 16210L, 16211L, 16212L,
16213L, 16214L, 16215L, 16216L, 16217L, 16218L, 16219L, 16220L,
16221L, 16222L, 16223L, 16224L, 16225L, 16226L, 16227L, 16228L,
16229L, 16230L, 16231L, 16232L, 16233L, 16234L, 16235L, 16236L,
16237L, 16238L, 16239L, 16240L, 16241L, 16242L, 16243L, 16244L,
16245L, 16246L, 16247L, 16248L, 16249L, 16250L, 16251L, 16252L,
16253L, 16254L, 16255L, 16256L, 16257L, 16258L, 16259L, 16260L,
16261L, 16262L, 16263L, 16264L, 16265L, 16266L, 16267L, 16268L,
16269L, 16270L, 16271L, 16272L, 16273L, 16274L, 16275L, 16276L,
16277L, 16278L, 16279L, 16280L, 16281L, 16282L, 16283L, 16284L,
16285L, 16286L, 16287L, 16288L, 16289L, 16290L, 16291L, 16292L,
16293L, 16294L, 16295L, 16296L, 16298L, 16299L, 16300L, 16301L,
16302L, 16303L, 16304L, 16305L, 16306L, 16307L, 16308L, 16309L,
16310L, 16311L, 16312L, 16313L, 16314L, 16315L, 16316L, 16317L,
16318L, 16319L, 16320L, 16321L, 16322L, 16323L, 16324L, 16325L,
16326L, 16327L, 16328L, 16329L, 16330L, 16331L, 16332L, 16333L,
16334L, 16335L, 16336L, 16337L, 16338L, 16339L, 16340L, 16341L,
16342L, 16343L, 16344L, 16345L, 16346L, 16347L, 16348L, 16349L,
16350L, 16351L, 16352L, 16353L, 16354L, 16355L, 16356L, 16358L,
16359L, 16360L, 16361L, 16362L, 16363L, 16364L, 16365L, 16366L,
16367L, 16368L, 16369L, 16370L, 16371L, 16372L, 16373L, 16374L,
16375L, 16376L, 16377L, 16378L, 16379L, 16380L, 16381L, 16382L,
16383L, 16384L, 16385L, 16386L, 16387L, 16388L, 16389L, 16390L,
16391L, 16392L, 16393L, 16394L, 16395L, 16396L, 16397L, 16398L,
16399L, 16400L, 16401L, 16402L, 16403L, 16404L, 16405L, 16406L,
16407L, 16408L, 16409L, 16410L, 16411L, 16412L, 16413L, 16414L,
16415L, 16416L, 16417L, 16418L, 16419L, 16420L, 16421L, 16422L,
16423L, 16424L, 16425L, 16426L, 16427L, 16428L, 16429L, 16430L,
16431L, 16432L, 16433L, 16434L, 16435L, 16436L, 16437L, 16438L,
16439L, 16440L, 16441L, 16442L, 16443L, 16444L, 16445L, 16446L,
16447L, 16448L, 16449L, 16450L, 16451L, 16455L, 16456L, 16457L,
16458L, 16459L, 16460L, 16461L, 16462L, 16463L, 16464L, 16465L,
16466L, 16467L, 16468L, 16469L, 16470L, 16471L, 16472L, 16473L,
16474L, 16475L, 16476L, 16477L, 16478L, 16479L, 16480L, 16481L,
16482L, 16483L, 16484L, 16485L, 16486L, 16487L, 16490L, 16491L,
16492L, 16493L, 16494L, 16495L, 16496L, 16497L, 16498L, 16499L,
16500L, 16501L, 16502L, 16503L, 16504L, 16505L, 16506L, 16507L,
16508L, 16509L, 16510L, 16511L, 16512L, 16513L, 16514L, 16515L,
16516L, 16517L, 16518L, 16519L, 16520L, 16521L, 16522L, 16523L,
16524L, 16526L, 16527L, 16528L, 16529L, 16530L, 16531L, 16532L,
16533L, 16534L, 16535L, 16536L, 16537L, 16538L, 16540L, 16541L,
16542L, 16543L, 16544L, 16545L, 16546L, 16547L, 16548L, 16549L,
16550L, 16551L, 16552L, 16553L, 16554L, 16555L, 16556L, 16558L,
16559L, 16560L, 16561L, 16562L, 16563L, 16564L, 16565L, 16567L,
16568L, 16569L, 16570L, 16571L, 16572L, 16573L, 16574L, 16575L,
16576L, 16577L, 16578L, 16579L, 16580L, 16581L, 16582L, 16583L,
16584L, 16585L, 16586L, 16587L, 16588L, 16589L, 16590L, 16591L,
16592L, 16593L, 16594L, 16595L, 16596L, 16597L, 16598L, 16599L,
16600L, 16601L, 16602L, 16603L, 16604L, 16605L, 16606L, 16607L,
16608L, 16609L, 16610L, 16612L, 16613L, 16614L, 16615L, 16616L,
16617L, 16619L, 16620L, 16621L, 16622L, 16623L, 16624L, 16625L,
16626L, 16627L, 16628L, 16629L, 16630L, 16631L, 16632L, 16633L,
16634L, 16635L, 16636L, 16637L, 16638L, 16639L, 16640L, 16641L,
16642L, 16643L, 16644L, 16645L, 16646L, 16647L, 16648L, 16649L,
16650L, 16651L, 16652L, 16653L, 16654L, 16655L, 16656L, 16657L,
16658L, 16659L, 16660L, 16661L, 16662L, 16663L, 16664L, 16665L,
16666L, 16667L, 16668L, 16669L, 16670L, 16671L, 16672L, 16673L,
16674L, 16675L, 16676L, 16677L, 16678L, 16679L, 16680L, 16681L,
16682L, 16683L, 16684L, 16685L, 16686L, 16687L, 16688L, 16689L,
16690L, 16692L, 16693L, 16694L, 16695L, 16696L, 16697L, 16698L,
16699L, 16700L, 16701L, 16702L, 16703L, 16704L, 16705L, 16706L,
16707L, 16708L, 16709L, 16710L, 16711L, 16712L, 16713L, 16714L,
16715L, 16716L, 16717L, 16718L, 16719L, 16720L, 16721L, 16722L,
16723L, 16724L, 16725L, 16726L, 16727L, 16728L, 16729L, 16730L,
16731L, 16733L, 16734L, 16735L, 16736L, 16737L, 16738L, 16740L,
16741L, 16742L, 16743L, 16744L, 16745L, 16746L, 16747L, 16748L,
16749L, 16750L, 16751L, 16752L, 16753L, 16754L, 16755L, 16756L,
16757L, 16758L, 16760L, 16761L, 16762L, 16763L, 16764L, 16765L,
16766L, 16767L, 16768L, 16770L, 16773L, 16774L, 16775L, 16776L,
16778L, 16779L, 16780L, 16781L, 16782L, 16783L, 16784L, 16785L,
16786L, 16787L, 16788L, 16789L, 16790L, 16791L, 16792L, 16793L,
16794L, 16795L, 16796L, 16797L, 16798L, 16799L, 16800L, 16801L,
16802L, 16803L, 16804L, 16805L, 16806L, 16807L, 16809L, 16810L,
16811L, 16812L, 16813L, 16814L, 16815L, 16816L, 16817L, 16818L,
16819L, 16820L, 16821L, 16822L, 16823L, 16824L, 16825L, 16826L,
16827L, 16828L, 16829L, 16830L, 16831L, 16832L, 16833L, 16834L,
16835L, 16836L, 16837L, 16838L, 16839L, 16840L, 16841L, 16842L,
16843L, 16844L, 16845L, 16847L, 16848L, 16849L, 16850L, 16851L,
16852L, 16853L, 16854L, 16855L, 16856L, 16857L, 16858L, 16859L,
16860L, 16861L, 16862L, 16863L, 16864L, 16865L, 16866L, 16867L,
16868L, 16869L, 16870L, 16871L, 16872L, 16873L, 16874L, 16875L,
16876L, 16877L, 16878L), month = c(7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L), day = c(16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 6L, 6L, 6L, 6L, 6L,
6L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 27L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 8L, 28L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L,
16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 16L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L, 31L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L,
28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 28L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L, 26L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L, 27L,
27L, 27L, 27L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L, 25L,
25L, 25L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L,
23L, 23L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 24L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L, 22L,
22L, 22L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L,
20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 20L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L, 21L,
21L, 21L, 21L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L, 17L,
17L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L,
18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 18L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L, 19L,
19L, 19L, 19L, 19L, 19L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L, 15L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 11L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L,
12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 12L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L, 13L,
13L, 13L, 13L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L,
14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
2L, 2L, 2L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L, 9L,
9L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L, 10L,
10L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L,
11L, 11L, 11L, 11L, 11L, 11L, 11L, 11L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L,
29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 29L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L, 30L,
30L, 30L, 30L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L,
7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 7L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L,
8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 8L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L), year = c(1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L, 1977L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L, 1978L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L, 1979L,
1979L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1980L,
1980L, 1980L, 1980L, 1980L, 1980L, 1980L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L, 1981L,
1981L, 1981L, 1981L, 1981L, 1981L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L, 1982L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L, 1983L,
1983L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1984L,
1984L, 1984L, 1984L, 1984L, 1984L, 1984L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L, 1985L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L, 1986L,
1986L, 1986L, 1986L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L, 1987L,
1987L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L, 1988L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L, 1989L,
1989L), plot_id = c(2L, 3L, 2L, 7L, 3L, 1L, 2L, 1L, 1L, 6L, 5L,
7L, 3L, 8L, 6L, 4L, 3L, 2L, 4L, 11L, 14L, 15L, 13L, 13L, 9L,
15L, 15L, 11L, 11L, 10L, 15L, 10L, 11L, 17L, 13L, 16L, 11L, 17L,
11L, 20L, 23L, 18L, 21L, 18L, 22L, 19L, 18L, 20L, 12L, 18L, 21L,
12L, 22L, 18L, 23L, 20L, 22L, 12L, 19L, 19L, 23L, 19L, 3L, 7L,
4L, 4L, 7L, 8L, 2L, 3L, 7L, 2L, 3L, 8L, 8L, 9L, 4L, 1L, 7L, 1L,
4L, 4L, 6L, 19L, 23L, 18L, 5L, 18L, 12L, 18L, 11L, 6L, 18L, 18L,
23L, 12L, 18L, 5L, 11L, 5L, 5L, 23L, 18L, 11L, 19L, 12L, 18L,
11L, 6L, 10L, 11L, 23L, 5L, 15L, 21L, 13L, 21L, 17L, 20L, 20L,
15L, 22L, 17L, 14L, 22L, 20L, 14L, 15L, 14L, 16L, 22L, 22L, 15L,
17L, 15L, 13L, 20L, 22L, 14L, 20L, 16L, 17L, 15L, 15L, 13L, 13L,
13L, 14L, 20L, 21L, 13L, 14L, 16L, 20L, 20L, 21L, 20L, 22L, 5L,
21L, 5L, 6L, 12L, 22L, 19L, 21L, 6L, 12L, 5L, 20L, 12L, 22L,
12L, 12L, 19L, 12L, 5L, 18L, 12L, 6L, 20L, 21L, 5L, 20L, 12L,
19L, 17L, 14L, 17L, 7L, 17L, 4L, 7L, 11L, 4L, 7L, 14L, 4L, 11L,
17L, 10L, 17L, 11L, 16L, 16L, 23L, 16L, 14L, 17L, 11L, 4L, 16L,
14L, 17L, 14L, 4L, 3L, 1L, 13L, 2L, 3L, 1L, 8L, 2L, 15L, 2L,
15L, 9L, 13L, 15L, 15L, 9L, 2L, 9L, 13L, 9L, 9L, 2L, 1L, 9L,
3L, 2L, 6L, 22L, 2L, 13L, 2L, 22L, 13L, 18L, 2L, 6L, 20L, 20L,
18L, 6L, 2L, 18L, 2L, 22L, 6L, 20L, 1L, 9L, 9L, 2L, 22L, 2L,
6L, 1L, 9L, 18L, 9L, 2L, 20L, 1L, 6L, 9L, 2L, 18L, 20L, 22L,
6L, 13L, 1L, 20L, 17L, 17L, 14L, 17L, 11L, 3L, 4L, 3L, 11L, 17L,
11L, 19L, 17L, 14L, 17L, 19L, 3L, 21L, 14L, 16L, 19L, 4L, 17L,
11L, 19L, 11L, 19L, 14L, 3L, 15L, 17L, 17L, 14L, 17L, 17L, 4L,
17L, 8L, 16L, 5L, 5L, 12L, 12L, 19L, 5L, 5L, 12L, 8L, 12L, 8L,
12L, 5L, 16L, 21L, 3L, 22L, 2L, 6L, 13L, 2L, 2L, 22L, 1L, 18L,
2L, 2L, 1L, 9L, 13L, 18L, 20L, 2L, 1L, 2L, 9L, 1L, 2L, 20L, 9L,
20L, 9L, 13L, 22L, 6L, 18L, 9L, 1L, 9L, 1L, 14L, 17L, 17L, 17L,
11L, 11L, 17L, 21L, 21L, 11L, 14L, 11L, 11L, 11L, 14L, 4L, 14L,
14L, 17L, 4L, 17L, 21L, 12L, 12L, 12L, 5L, 8L, 12L, 5L, 5L, 5L,
8L, 8L, 5L, 13L, 9L, 2L, 13L, 2L, 20L, 22L, 2L, 9L, 1L, 9L, 2L,
2L, 9L, 13L, 2L, 18L, 18L, 2L, 20L, 1L, 2L, 9L, 13L, 6L, 9L,
2L, 18L, 20L, 2L, 1L, 9L, 2L, 9L, 1L, 12L, 14L, 17L, 4L, 5L,
5L, 4L, 8L, 11L, 12L, 4L, 5L, 11L, 21L, 8L, 11L, 8L, 17L, 3L,
14L, 14L, 17L, 17L, 8L, 11L, 11L, 14L, 12L, 12L, 11L, 14L, 11L,
12L, 4L, 4L, 17L, 17L, 5L, 3L, 11L, 21L, 21L, 5L, 3L, 13L, 2L,
2L, 20L, 3L, 13L, 2L, 9L, 2L, 9L, 9L, 9L, 2L, 2L, 2L, 3L, 2L,
2L, 2L, 20L, 6L, 9L, 2L, 20L, 9L, 13L, 20L, 2L, 2L, 2L, 14L,
17L, 17L, 17L, 11L, 1L, 4L, 14L, 1L, 11L, 8L, 8L, 11L, 14L, 4L,
11L, 8L, 14L, 14L, 17L, 11L, 1L, 14L, 17L, 11L, 18L, 12L, 18L,
12L, 21L, 5L, 5L, 18L, 18L, 5L, 18L, 18L, 18L, 21L, 18L, 5L,
12L, 3L, 2L, 13L, 2L, 2L, 20L, 2L, 6L, 22L, 2L, 9L, 2L, 9L, 20L,
2L, 3L, 2L, 2L, 13L, 2L, 2L, 5L, 17L, 4L, 17L, 21L, 4L, 5L, 4L,
5L, 11L, 11L, 14L, 14L, 8L, 4L, 17L, 21L, 4L, 5L, 17L, 17L, 11L,
14L, 5L, 5L, 8L, 15L, 18L, 18L, 12L, 1L, 12L, 15L, 1L, 15L, 18L,
12L, 18L, 1L, 16L, 16L, 2L, 20L, 2L, 22L, 22L, 3L, 9L, 2L, 3L,
20L, 2L, 2L, 13L, 2L, 2L, 20L, 13L, 20L, 3L, 9L, 2L, 2L, 3L,
2L, 20L, 5L, 4L, 5L, 17L, 14L, 21L, 21L, 4L, 17L, 4L, 5L, 4L,
11L, 11L, 4L, 14L, 21L, 11L, 17L, 5L, 11L, 14L, 5L, 5L, 17L,
5L, 17L, 5L, 11L, 17L, 17L, 5L, 8L, 18L, 15L, 8L, 15L, 18L, 15L,
1L, 8L, 18L, 8L, 1L, 16L, 8L, 15L, 1L, 18L, 15L, 2L, 2L, 2L,
6L, 6L, 6L, 9L, 13L, 13L, 13L, 13L, 13L, 20L, 20L, 22L, 22L,
9L, 2L, 2L, 9L, 13L, 9L, 20L, 2L, 3L, 21L, 2L, 9L, 22L, 9L, 9L,
13L, 20L, 2L, 9L, 22L, 13L, 13L, 4L, 4L, 5L, 5L, 5L, 5L, 5L,
8L, 8L, 11L, 11L, 11L, 14L, 17L, 17L, 11L, 5L, 17L, 8L, 5L, 5L,
17L, 4L, 11L, 17L, 4L, 17L, 8L, 11L, 5L, 14L, 8L, 4L, 4L, 17L,
4L, 17L, 11L, 11L, 14L, 1L, 1L, 18L, 12L, 1L, 12L, 18L, 16L,
1L, 18L, 12L, 18L, 16L, 15L, 18L, 1L, 18L, 2L, 22L, 2L, 9L, 6L,
2L, 9L, 6L, 20L, 2L, 22L, 9L, 2L, 9L, 20L, 22L, 2L, 22L, 9L,
13L, 9L, 9L, 9L, 9L, 13L, 21L, 14L, 21L, 5L, 5L, 12L, 20L, 12L,
6L, 6L, 20L, 22L, 6L, 20L, 22L, 20L, 5L, 6L, 12L, 16L, 18L, 11L,
17L, 18L, 11L, 3L, 11L, 17L, 18L, 17L, 17L, 17L, 14L, 17L, 4L,
4L, 11L, 11L, 18L, 15L, 4L, 4L, 14L, 11L, 17L, 11L, 14L, 17L,
4L, 17L, 9L, 2L, 1L, 2L, 13L, 8L, 1L, 2L, 8L, 8L, 8L, 1L, 1L,
2L, 9L, 1L, 9L, 1L, 1L, 2L, 9L, 1L, 2L, 2L, 12L, 20L, 8L, 11L,
17L, 20L, 8L, 9L, 12L, 11L, 17L, 9L, 22L, 8L, 17L, 20L, 12L,
22L, 9L, 17L, 12L, 20L, 8L, 12L, 8L, 22L, 17L, 9L, 9L, 17L, 22L,
22L, 21L, 12L, 17L, 9L, 9L, 11L, 17L, 8L, 17L, 21L, 11L, 20L,
11L, 12L, 6L, 18L, 4L, 2L, 13L, 14L, 2L, 18L, 2L, 18L, 18L, 14L,
18L, 5L, 18L, 14L, 1L, 6L, 5L, 6L, 1L, 18L, 3L, 13L, 1L, 6L,
1L, 6L, 1L, 4L, 5L, 2L, 1L, 16L, 1L, 6L, 4L, 4L, 14L, 13L, 13L,
13L, 18L, 9L, 11L, 12L, 17L, 12L, 12L, 11L, 20L, 11L, 12L, 17L,
8L, 17L, 22L, 8L, 12L, 6L, 8L, 9L, 22L, 8L, 17L, 12L, 22L, 17L,
17L, 11L, 12L, 17L, 12L, 2L, 2L, 9L, 21L, 9L, 12L, 12L, 17L,
9L, 17L, 13L, 15L, 4L, 15L, 18L, 14L, 14L, 1L, 3L, 4L, 18L, 14L,
3L, 14L, 16L, 18L, 18L, 13L, 1L, 18L, 5L, 5L, 1L, 16L, 4L, 5L,
1L, 4L, 1L, 14L, 4L, 4L, 12L, 17L, 22L, 17L, 8L, 17L, 20L, 21L,
12L, 12L, 20L, 17L, 12L, 11L, 17L, 11L, 17L, 21L, 12L, 20L, 9L,
22L, 17L, 17L, 20L, 19L, 12L, 11L, 21L, 12L, 8L, 9L, 11L, 19L,
9L, 21L, 11L, 19L, 12L, 17L, 6L, 16L, 18L, 2L, 13L, 18L, 4L,
6L, 18L, 4L, 5L, 2L, 14L, 6L, 5L, 18L, 2L, 13L, 4L, 18L, 15L,
1L, 6L, 1L, 6L, 13L, 13L, 16L, 18L, 14L, 16L, 18L, 4L, 15L, 1L,
2L, 14L, 1L, 4L, 16L, 1L, 4L, 13L, 5L, 11L, 17L, 12L, 17L, 12L,
11L, 12L, 7L, 11L, 12L, 8L, 20L, 12L, 11L, 12L, 8L, 9L, 17L,
22L, 21L, 17L, 17L, 20L, 7L, 9L, 20L, 11L, 11L, 22L, 17L, 9L,
17L, 11L, 8L, 9L, 19L, 20L, 9L, 21L, 8L, 11L, 21L, 17L, 22L,
12L, 19L, 12L, 8L, 9L, 11L, 11L, 8L, 12L, 3L, 6L, 14L, 13L, 18L,
4L, 3L, 3L, 13L, 14L, 18L, 2L, 5L, 13L, 15L, 15L, 2L, 4L, 1L,
2L, 5L, 1L, 2L, 14L, 6L, 3L, 18L, 2L, 6L, 3L, 5L, 3L, 4L, 2L,
6L, 14L, 3L, 13L, 1L, 14L, 18L, 5L, 4L, 5L, 2L, 18L, 1L, 4L,
5L, 6L, 13L, 2L, 4L, 1L, 1L, 1L, 1L, 1L, 1L, 20L, 9L, 11L, 17L,
8L, 11L, 21L, 11L, 11L, 12L, 20L, 8L, 12L, 22L, 9L, 9L, 20L,
11L, 17L, 12L, 17L, 9L, 17L, 17L, 12L, 9L, 22L, 12L, 8L, 17L,
11L, 9L, 9L, 11L, 11L, 20L, 11L, 8L, 2L, 3L, 4L, 5L, 5L, 14L,
18L, 5L, 13L, 18L, 3L, 18L, 18L, 14L, 2L, 3L, 6L, 15L, 6L, 2L,
4L, 13L, 18L, 2L, 13L, 6L, 14L, 18L, 14L, 3L, 5L, 2L, 5L, 13L,
13L, 15L, 4L, 4L, 13L, 5L, 13L, 6L, 18L, 19L, 9L, 11L, 17L, 12L,
19L, 8L, 1L, 1L, 1L, 11L, 9L, 12L, 17L, 8L, 11L, 9L, 9L, 8L,
17L, 8L, 1L, 12L, 8L, 9L, 19L, 12L, 1L, 9L, 17L, 22L, 11L, 21L,
12L, 20L, 9L, 9L, 11L, 17L, 11L, 17L, 8L, 6L, 4L, 6L, 13L, 5L,
18L, 6L, 15L, 6L, 14L, 5L, 13L, 18L, 18L, 2L, 4L, 18L, 6L, 18L,
4L, 6L, 18L, 2L, 4L, 14L, 18L, 14L, 14L, 2L, 13L, 2L, 13L, 13L,
2L, 4L, 17L, 19L, 9L, 22L, 9L, 22L, 11L, 9L, 17L, 11L, 1L, 17L,
12L, 12L, 22L, 1L, 11L, 21L, 22L, 9L, 20L, 11L, 9L, 8L, 8L, 9L,
22L, 12L, 8L, 17L, 9L, 22L, 22L, 17L, 1L, 20L, 9L, 11L, 22L,
17L, 2L, 14L, 6L, 13L, 18L, 5L, 18L, 18L, 6L, 6L, 2L, 14L, 4L,
13L, 3L, 2L, 2L, 18L, 5L, 14L, 2L, 13L, 2L, 3L, 2L, 2L, 13L,
6L, 5L, 5L, 16L, 22L, 8L, 9L, 11L, 22L, 17L, 12L, 17L, 11L, 22L,
11L, 1L, 9L, 22L, 11L, 11L, 2L, 13L, 18L, 6L, 18L, 6L, 4L, 18L,
2L, 6L, 18L, 2L, 3L, 16L, 18L, 18L, 4L, 6L, 6L, 18L, 16L, 2L,
4L, 6L, 2L, 6L, 18L, 4L, 14L, 18L, 2L, 14L, 16L, 6L, 16L, 6L,
18L, 6L, 2L, 13L, 18L, 22L, 9L, 22L, 22L, 22L, 8L, 9L, 11L, 12L,
11L, 8L, 22L, 11L, 8L, 22L, 17L, 17L, 8L, 22L, 12L, 9L, 20L,
2L, 3L, 2L, 5L, 14L, 18L, 3L, 1L, 18L, 2L, 1L, 6L, 1L, 15L, 4L,
13L, 14L, 2L, 16L, 4L, 16L, 4L, 14L, 16L, 13L, 13L, 2L, 12L,
4L, 2L, 13L, 17L, 2L, 12L, 14L, 22L, 14L, 5L, 17L, 17L, 12L,
14L, 13L, 18L, 22L, 18L, 18L, 4L, 2L, 22L, 8L, 1L, 9L, 1L, 18L,
5L, 17L, 2L, 6L, 17L, 9L, 9L, 17L, 18L, 13L, 9L, 11L, 9L, 11L,
13L, 4L, 8L, 11L, 12L, 12L, 12L, 12L, 1L, 12L, 22L, 1L, 11L,
1L, 22L, 9L, 8L, 17L, 9L, 9L, 9L, 12L, 20L, 17L, 20L, 20L, 9L,
9L, 17L, 4L, 2L, 15L, 18L, 14L, 13L, 5L, 15L, 18L, 13L, 15L,
14L, 18L, 2L, 14L, 18L, 4L, 13L, 4L, 5L, 14L, 4L, 9L, 12L, 12L,
12L, 17L, 22L, 17L, 22L, 20L, 12L, 17L, 9L, 22L, 9L, 17L, 21L,
9L, 12L, 17L, 9L, 17L, 22L, 9L, 20L, 9L, 8L, 20L, 8L, 12L, 22L,
17L, 20L, 11L, 20L, 5L, 2L, 15L, 1L, 18L, 15L, 15L, 5L, 14L,
18L, 14L, 18L, 1L, 18L, 14L, 13L, 1L, 5L, 5L, 1L, 4L, 14L, 2L,
1L, 14L, 15L, 4L, 13L, 2L, 2L, 14L, 12L, 21L, 21L, 22L, 9L, 17L,
22L, 20L, 9L, 17L, 20L, 8L, 11L, 20L, 9L, 12L, 17L, 9L, 21L,
21L, 23L, 9L, 20L, 11L, 17L, 9L, 3L, 5L, 2L, 18L, 15L, 13L, 5L,
14L, 18L, 5L, 14L, 18L, 1L, 6L, 14L, 15L, 14L, 5L, 2L, 18L, 13L,
14L, 14L, 19L, 13L, 13L, 20L, 22L, 1L, 20L, 20L, 13L, 20L, 21L,
22L, 17L, 2L, 18L, 2L, 12L, 14L, 17L, 14L, 18L, 14L, 11L, 18L,
12L, 8L, 17L, 14L, 11L, 18L, 14L, 11L, 17L, 8L, 17L, 4L, 15L,
9L, 15L, 4L, 3L, 5L, 3L, 15L, 15L, 6L, 9L, 9L, 4L, 4L, 13L, 13L,
24L, 21L, 14L, 20L, 20L, 14L, 14L, 24L, 14L, 22L, 13L, 14L, 14L,
12L, 8L, 11L, 17L, 12L, 11L, 18L, 17L, 12L, 17L, 15L, 17L, 17L,
12L, 11L, 17L, 18L, 3L, 9L, 9L, 5L, 4L, 9L, 2L, 6L, 9L, 1L, 1L,
5L, 1L, 4L, 2L, 5L, 1L, 2L, 5L, 10L, 17L, 23L, 9L, 12L, 22L,
9L, 17L, 12L, 20L, 22L, 12L, 20L, 12L, 20L, 11L, 20L, 8L, 9L,
11L, 21L, 9L, 22L, 8L, 11L, 9L, 3L, 3L, 14L, 15L, 13L, 24L, 2L,
2L, 13L, 4L, 2L, 24L, 4L, 5L, 1L, 24L, 2L, 3L, 4L, 24L, 14L,
24L, 5L, 14L, 13L, 18L, 2L, 1L, 9L, 12L, 11L, 12L, 12L, 8L, 20L,
12L, 8L, 9L, 11L, 17L, 12L, 9L, 9L, 10L, 11L, 11L, 19L, 22L,
17L, 17L, 11L, 8L, 9L, 23L, 9L, 12L, 17L, 19L, 9L, 17L, 9L, 20L,
11L, 11L, 3L, 24L, 3L, 14L, 24L, 3L, 4L, 6L, 14L, 15L, 2L, 5L,
24L, 13L, 4L, 15L, 14L, 5L, 13L, 2L, 5L, 2L, 18L, 3L, 5L, 4L,
3L, 5L, 17L, 4L, 17L, 5L, 15L, 15L, 3L, 17L, 3L, 18L, 5L, 6L,
14L, 18L, 5L, 24L, 1L, 24L, 4L, 17L, 18L, 2L, 3L, 1L, 15L, 2L,
4L, 18L, 14L, 1L, 17L, 18L, 14L, 5L, 2L, 14L, 2L, 3L, 24L, 2L,
5L, 2L, 2L, 24L, 17L, 1L, 13L, 14L, 6L, 17L, 7L, 7L, 7L, 7L,
8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 10L, 10L, 11L, 11L, 11L,
11L, 12L, 12L, 12L, 12L, 13L, 13L, 14L, 14L, 15L, 15L, 15L, 16L,
16L, 16L, 17L, 17L, 18L, 18L, 19L, 19L, 19L, 19L, 20L, 20L, 20L,
21L, 22L, 23L, 23L, 24L, 20L, 11L, 11L, 8L, 9L, 12L, 8L, 21L,
20L, 22L, 11L, 8L, 22L, 11L, 11L, 12L, 19L, 8L, 11L, 9L, 12L,
23L, 9L, 12L, 20L, 19L, 11L, 8L, 11L, 18L, 11L, 8L, 11L, 8L,
9L, 11L, 21L, 11L, 17L, 11L, 9L, 10L, 11L, 21L, 19L, 20L, 11L,
9L, 12L, 18L, 22L, 9L, 8L, 11L, 17L, 9L, 18L, 9L, 12L, 19L, 20L,
12L, 17L, 17L, 8L, 10L, 11L, 12L, 12L, 21L, 17L, 17L, 19L, 18L,
19L, 11L, 18L, 20L, 9L, 17L, 11L, 17L, 22L, 10L, 21L, 17L, 1L,
1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 3L, 4L, 5L, 5L, 5L, 5L, 6L, 6L,
6L, 6L, 13L, 13L, 14L, 14L, 14L, 15L, 15L, 15L, 16L, 16L, 16L,
17L, 17L, 18L, 18L, 23L, 23L, 24L, 24L, 24L, 24L, 2L, 3L, 16L,
2L, 5L, 24L, 13L, 15L, 15L, 24L, 4L, 2L, 2L, 14L, 14L, 14L, 4L,
1L, 1L, 2L, 2L, 3L, 4L, 14L, 4L, 5L, 6L, 5L, 2L, 14L, 4L, 24L,
4L, 15L, 2L, 15L, 4L, 5L, 17L, 18L, 18L, 18L, 11L, 12L, 22L,
17L, 8L, 19L, 20L, 8L, 9L, 12L, 17L, 11L, 21L, 11L, 8L, 8L, 18L,
8L, 21L, 12L, 12L, 19L, 12L, 17L, 21L, 23L, 9L, 17L, 10L, 17L,
9L, 11L, 17L, 9L, 9L, 12L, 12L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L,
2L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 5L, 6L, 6L, 7L, 7L, 8L, 8L, 9L,
9L, 10L, 10L, 11L, 11L, 11L, 12L, 12L, 12L, 13L, 13L, 13L, 14L,
14L, 14L, 15L, 15L, 15L, 16L, 16L, 24L, 24L, 24L, 24L, 24L, 24L,
24L, 3L, 24L, 5L, 3L, 15L, 15L, 13L, 13L, 24L, 3L, 3L, 4L, 1L,
15L, 14L, 2L, 13L, 6L, 14L, 14L, 15L, 4L, 2L, 24L, 6L, 1L, 15L,
2L, 2L, 2L, 3L, 5L, 2L, 3L, 9L, 11L, 21L, 24L, 1L, 4L, 6L, 12L,
17L, 20L, 3L, 4L, 17L, 18L, 22L, 13L, 18L, 2L, 6L, 9L, 12L, 13L,
22L, 1L, 2L, 8L, 9L, 20L, 4L, 6L, 9L, 12L, 13L, 24L, 1L, 3L,
6L, 11L, 15L, 18L, 20L, 22L, 20L, 21L, 22L, 3L, 12L, 13L, 14L,
24L, 1L, 2L, 9L, 4L, 9L, 13L, 18L, 3L, 6L, 13L, 15L, 20L, 2L,
4L, 6L, 12L, 14L, 22L, 2L, 4L, 13L, 14L, 22L, 12L, 13L, 14L,
24L, 2L, 6L, 11L, 13L, 20L, 24L, 6L, 2L, 12L, 6L, 20L, 1L, 2L,
4L, 9L, 11L, 2L, 8L, 13L, 20L, 2L, 3L, 12L, 20L, 21L, 1L, 11L,
15L, 2L, 17L, 19L, 2L, 5L, 11L, 2L, 6L, 13L, 19L, 2L, 4L, 5L,
9L, 13L, 20L, 21L, 22L, 1L, 2L, 4L, 9L, 12L, 20L, 2L, 24L, 24L,
1L, 8L, 9L, 19L, 17L, 19L, 20L, 4L, 6L, 14L, 19L, 20L, 22L, 6L,
8L, 11L, 12L, 13L, 17L, 1L, 8L, 20L, 2L, 13L, 20L, 2L, 18L, 22L,
13L, 20L, 1L, 2L, 12L, 13L, 14L, 1L, 4L, 12L, 13L, 13L, 15L,
19L, 8L, 13L, 22L, 2L, 6L, 11L, 20L, 1L, 5L, 6L, 9L, 11L, 13L,
20L, 22L, 24L, 2L, 4L, 6L, 13L, 20L, 24L, 19L, 20L, 1L, 12L,
18L, 1L, 2L, 5L, 6L, 9L, 18L, 24L, 12L, 10L, 17L, 17L, 9L, 12L,
17L, 1L, 21L, 19L, 12L, 8L, 12L, 19L, 21L, 11L, 17L, 9L, 12L,
9L, 20L, 21L, 9L, 8L, 12L, 17L, 23L, 9L, 19L, 20L, 19L, 8L, 12L,
9L, 20L, 1L, 22L, 12L, 4L, 14L, 15L, 4L, 15L, 2L, 18L, 24L, 3L,
16L, 14L, 18L, 3L, 4L, 24L, 3L, 4L, 13L, 4L, 24L, 4L, 6L, 15L,
5L, 18L, 3L, 4L, 13L, 15L, 2L, 4L, 4L, 15L, 2L, 24L, 13L, 13L,
14L, 18L, 6L, 15L, 13L, 5L, 17L, 8L, 20L, 17L, 20L, 1L, 19L,
1L, 10L, 12L, 1L, 12L, 9L, 22L, 11L, 12L, 19L, 8L, 9L, 12L, 10L,
12L, 22L, 17L, 17L, 1L, 1L, 10L, 9L, 11L, 8L, 9L, 20L, 10L, 9L,
1L, 12L, 4L, 6L, 15L, 4L, 3L, 16L, 4L, 6L, 18L, 2L, 24L, 4L,
5L, 3L, 24L, 2L, 15L, 13L, 14L, 16L, 18L, 24L, 3L, 24L, 4L, 18L,
24L, 5L, 13L, 4L, 14L, 15L, 2L, 2L, 2L, 13L, 18L, 15L, 2L, 14L,
4L, 4L, 13L, 13L, 5L, 1L, 10L, 17L, 22L, 24L, 12L, 11L, 9L, 24L,
24L, 17L, 17L, 11L, 20L, 24L, 11L, 12L, 24L, 1L, 1L, 9L, 9L,
22L, 12L, 22L, 22L, 9L, 17L, 12L, 1L, 9L, 9L, 17L, 20L, 1L, 12L,
9L, 17L, 24L, 20L, 1L, 20L, 24L, 12L, 13L, 18L, 5L, 18L, 4L,
15L, 15L, 8L, 18L, 18L, 4L, 13L, 15L, 13L, 2L, 18L, 5L, 2L, 5L,
4L, 2L, 6L, 13L, 8L, 14L, 18L, 14L, 14L, 15L, 3L, 13L, 14L, 8L,
18L, 4L, 4L, 16L, 4L, 14L, 2L, 18L, 2L, 5L, 1L, 1L, 1L, 1L, 2L,
2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
5L, 5L, 5L, 5L, 5L, 5L, 5L, 5L, 2L, 2L, 2L, 7L, 7L, 7L, 9L, 9L,
9L, 9L, 10L, 17L, 20L, 11L, 18L, 18L, 24L, 11L, 24L, 17L, 11L,
20L, 17L, 22L, 18L, 24L, 11L, 8L, 18L, 21L, 9L, 11L, 8L, 17L,
22L, 17L, 20L, 9L, 19L, 9L, 17L, 20L, 18L, 9L, 22L, 20L, 18L,
8L, 14L, 2L, 5L, 4L, 12L, 13L, 12L, 3L, 14L, 14L, 1L, 4L, 6L,
15L, 4L, 1L, 12L, 2L, 6L, 4L, 13L, 4L, 4L, 12L, 13L, 2L, 13L,
14L, 5L, 14L, 4L, 4L, 14L, 13L, 16L, 14L, 1L, 12L, 4L, 1L, 24L,
17L, 18L, 24L, 24L, 11L, 11L, 17L, 17L, 24L, 17L, 18L, 8L, 17L,
22L, 18L, 22L, 24L, 11L, 17L, 10L, 20L, 8L, 11L, 17L, 11L, 18L,
14L, 12L, 1L, 5L, 14L, 15L, 4L, 12L, 14L, 13L, 12L, 14L, 1L,
4L, 13L, 4L, 4L, 15L, 16L, 4L, 4L, 14L, 14L, 13L, 2L, 5L, 11L,
17L, 11L, 19L, 17L, 18L, 24L, 18L, 20L, 22L, 8L, 17L, 18L, 8L,
11L, 17L, 24L, 17L, 22L, 8L, 11L, 11L, 17L, 3L, 12L, 12L, 12L,
14L, 15L, 3L, 4L, 12L, 1L, 1L, 12L, 3L, 12L, 13L, 14L, 2L, 1L,
4L, 12L, 2L, 1L, 5L, 13L, 4L, 14L, 4L, 14L, 14L, 7L, 20L, 24L,
18L, 18L, 22L, 17L, 20L, 18L, 17L, 11L, 13L, 11L, 18L, 17L, 22L,
9L, 22L, 8L, 20L, 17L, 9L, 11L, 13L, 22L, 19L, 18L, 8L, 13L,
17L, 8L, 17L, 13L, 17L, 19L, 8L, 9L, 22L, 20L, 11L, 6L, 15L,
4L, 4L, 12L, 3L, 5L, 12L, 12L, 2L, 4L, 12L, 1L, 12L, 15L, 1L,
14L, 2L, 6L, 15L, 14L, 4L, 1L, 4L, 4L, 14L, 3L, 4L, 1L, 8L, 11L,
13L, 8L, 24L, 17L, 22L, 24L, 20L, 20L, 24L, 17L, 24L, 21L, 1L,
10L, 11L, 17L, 24L, 22L, 20L, 13L, 20L, 13L, 8L, 1L, 8L, 1L,
11L, 8L, 24L, 17L, 22L, 20L, 12L, 6L, 12L, 15L, 4L, 6L, 12L,
12L, 6L, 12L, 15L, 18L, 9L, 2L, 4L, 3L, 18L, 5L, 14L, 18L, 4L,
2L, 18L, 9L, 9L, 12L, 4L, 18L, 5L, 15L, 9L, 15L, 14L, 12L, 14L,
5L, 12L, 13L, 17L, 20L, 8L, 24L, 17L, 21L, 24L, 8L, 21L, 21L,
19L, 8L, 1L, 24L, 21L, 1L, 10L, 8L, 17L, 1L, 13L, 17L, 24L, 1L,
17L, 20L, 13L, 20L, 22L, 22L, 8L, 1L, 8L, 17L, 20L, 13L, 11L,
13L, 13L, 11L, 24L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L,
4L, 4L, 4L, 4L, 5L, 5L, 6L, 6L, 6L, 6L, 6L, 9L, 9L, 9L, 9L, 9L,
12L, 12L, 13L, 13L, 14L, 14L, 14L, 14L, 14L, 14L, 14L, 15L, 15L,
15L, 17L, 17L, 17L, 18L, 18L, 18L, 18L, 18L, 18L, 19L, 19L, 19L,
19L, 2L, 3L, 4L, 5L, 18L, 4L, 12L, 18L, 4L, 12L, 14L, 12L, 9L,
14L, 12L, 9L, 12L, 6L, 6L, 4L, 2L, 4L, 9L, 2L, 4L, 4L, 12L, 5L,
9L, 12L, 9L, 18L, 9L, 3L, 4L, 6L, 12L, 9L, 10L, 9L, 9L, 2L, 2L,
9L, 24L, 2L, 5L, 24L, 14L, 10L, 9L, 5L, 1L, 3L, 9L, 9L, 14L,
5L, 4L, 2L, 1L, 2L, 5L, 9L, 2L, 6L, 10L, 14L, 1L, 5L, 9L, 4L,
6L, 4L, 9L, 2L, 10L, 1L, 4L, 1L, 14L, 2L, 4L, 6L, 9L, 9L, 4L,
4L, 8L, 8L, 8L, 11L, 11L, 12L, 12L, 12L, 12L, 12L, 13L, 13L,
13L, 13L, 13L, 13L, 13L, 14L, 15L, 15L, 16L, 16L, 17L, 17L, 18L,
18L, 18L, 19L, 19L, 19L, 19L, 19L, 20L, 20L, 20L, 20L, 20L, 21L,
22L, 22L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 23L, 13L,
22L, 13L, 12L, 12L, 8L, 12L, 17L, 12L, 17L, 18L, 20L, 17L, 18L,
19L, 17L, 8L, 12L, 13L, 20L, 11L, 8L, 18L, 8L, 17L, 22L, 17L,
11L, 18L, 8L, 17L, 17L, 11L, 17L, 11L, 17L, 12L, 13L, 11L, 20L,
13L, 8L, 11L, 13L, 20L, 24L, 24L, 11L, 8L, 10L, 19L, 20L, 13L,
19L, 17L, 11L, 18L, 19L, 20L, 8L, 17L, 18L, 20L, 22L, 22L, 10L,
17L, 17L, 17L, 17L, 20L, 24L, 13L, 8L, 13L, 17L, 10L, 1L, 1L,
1L, 1L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L, 4L, 4L, 5L, 5L, 6L, 6L,
6L, 6L, 6L, 6L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L,
11L, 12L, 12L, 12L, 12L, 14L, 14L, 14L, 9L, 1L, 2L, 5L, 12L,
2L, 5L, 15L, 1L, 12L, 14L, 15L, 6L, 9L, 2L, 6L, 12L, 12L, 1L,
9L, 12L, 2L, 4L, 2L, 5L, 9L, 1L, 14L, 2L, 14L, 12L, 5L, 12L,
11L, 13L, 24L, 20L, 24L, 12L, 13L, 13L, 20L, 18L, 20L, 12L, 17L,
11L, 18L, 11L, 11L, 18L, 19L, 12L, 18L, 22L, 12L, 11L, 13L, 20L,
22L, 17L, 17L, 19L, 20L, 12L, 19L, 18L, 22L, 20L, 12L, 10L, 19L,
17L, 12L, 13L, 13L, 17L, 24L, 12L, 12L, 13L, 11L, 22L, 5L, 8L,
9L, 15L, 2L, 9L, 2L, 9L, 5L, 8L, 9L, 9L, 2L, 9L, 2L, 5L, 1L,
14L, 8L, 6L, 5L, 1L, 2L, 14L, 1L, 9L, 2L, 1L, 9L, 9L, 2L, 5L,
8L, 1L, 2L, 4L, 2L, 14L, 2L, 2L, 6L, 9L, 5L, 13L, 19L, 10L, 13L,
17L, 23L, 17L, 17L, 11L, 17L, 8L, 20L, 8L, 24L, 8L, 20L, 8L,
20L, 19L, 20L, 22L, 13L, 13L, 11L, 18L, 18L, 13L, 17L, 20L, 17L,
11L, 17L, 8L, 13L, 17L, 11L, 17L, 21L, 2L, 5L, 6L, 1L, 1L, 3L,
5L, 6L, 1L, 1L, 1L, 2L, 6L, 2L, 3L, 4L, 1L, 3L, 4L, 6L, 3L, 5L,
6L, 3L, 4L, 6L, 2L, 3L, 3L, 2L, 2L, 12L, 2L, 2L, 9L, 3L, 12L,
6L, 12L, 3L, 4L, 9L, 14L, 12L, 14L, 12L, 1L, 12L, 14L, 9L, 1L,
2L, 9L, 15L, 1L, 3L, 4L, 2L, 4L, 4L, 14L, 5L, 9L, 14L, 5L, 6L,
1L, 9L, 12L, 19L, 20L, 22L, 1L, 12L, 17L, 22L, 1L, 3L, 9L, 14L,
17L, 20L, 22L, 1L, 5L, 12L, 14L, 17L, 20L, 22L, 1L, 5L, 1L, 5L,
9L, 17L, 22L, 1L, 5L, 14L, 17L, 22L, 5L, 14L, 1L, 3L, 9L, 12L,
17L, 20L, 1L, 17L, 9L, 12L, 20L, 12L, 14L, 20L, 22L, 9L, 22L,
5L, 9L, 12L, 17L, 20L, 22L, 1L, 5L, 9L, 12L, 22L, 9L, 14L, 1L,
9L, 14L, 17L, 20L, 1L, 9L, 1L, 14L, 17L, 20L, 22L, 5L, 9L, 1L,
5L, 9L, 14L, 19L, 22L, 9L, 12L, 20L, 9L, 12L, 14L, 17L, 9L, 1L,
12L, 22L, 1L, 5L, 9L, 12L, 14L, 9L, 23L, 9L, 14L, 20L, 5L, 9L,
12L, 14L, 20L, 22L, 22L, 14L, 22L, 1L, 17L, 20L, 9L, 20L, 22L,
5L, 12L, 14L, 20L, 1L, 9L, 14L, 12L, 12L, 14L, 20L, 5L, 14L,
17L, 22L, 1L, 5L, 12L, 17L, 20L, 12L, 16L, 22L, 1L, 5L, 9L, 17L,
20L, 22L, 1L, 5L, 14L, 17L, 22L, 1L, 5L, 14L, 17L, 3L, 9L, 14L,
9L, 22L, 17L, 22L, 5L, 17L, 20L, 22L, 1L, 9L, 12L, 14L, 2L, 18L,
24L, 2L, 4L, 6L, 13L, 18L, 2L, 4L, 6L, 8L, 15L, 2L, 6L, 11L,
13L, 18L, 4L, 6L, 8L, 13L, 6L, 8L, 11L, 24L, 2L, 6L, 8L, 18L,
24L, 2L, 6L, 13L, 24L, 2L, 13L, 24L, 4L, 11L, 2L, 8L, 24L, 2L,
6L, 8L, 13L, 18L, 2L, 8L, 11L, 13L, 18L, 2L, 4L, 13L, 18L, 24L,
2L, 6L, 18L, 2L, 6L, 11L, 24L, 6L, 13L, 2L, 6L, 13L, 18L, 24L,
13L, 6L, 8L, 11L, 13L, 18L, 2L, 13L, 18L, 2L, 6L, 8L, 11L, 13L,
2L, 13L, 6L, 8L, 11L, 6L, 11L, 2L, 6L, 11L, 18L, 2L, 8L, 13L,
4L, 6L, 13L, 18L, 11L, 13L, 18L, 8L, 13L, 2L, 6L, 13L, 18L, 21L,
4L, 13L, 2L, 4L, 8L, 18L, 24L, 2L, 4L, 6L, 18L, 2L, 24L, 2L,
2L, 8L, 2L, 6L, 8L, 13L, 24L, 4L, 6L, 11L, 13L, 18L, 8L, 13L,
18L, 24L, 2L, 11L, 13L, 18L, 24L, 13L, 24L, 2L, 4L, 6L, 11L,
13L, 24L, 2L, 11L, 13L, 8L, 11L, 13L, 12L, 21L, 10L, 12L, 24L,
13L, 24L, 18L, 20L, 20L, 12L, 18L, 17L, 24L, 17L, 19L, 20L, 11L,
20L, 23L, 24L, 12L, 20L, 22L, 20L, 12L, 22L, 24L, 12L, 18L, 13L,
22L, 22L, 12L, 18L, 13L, 17L, 11L, 17L, 10L, 12L, 17L, 19L, 11L,
22L, 17L, 13L, 17L, 24L, 24L, 13L, 13L, 8L, 13L, 8L, 13L, 14L,
15L, 13L, 13L, 14L, 15L, 13L, 15L, 13L, 8L, 13L, 8L, 13L, 15L,
9L, 14L, 15L, 8L, 13L, 15L, 8L, 13L, 14L, 15L, 9L, 14L, 6L, 2L,
5L, 2L, 5L, 5L, 2L, 5L, 1L, 3L, 14L, 14L, 4L, 8L, 9L, 9L, 14L,
5L, 8L, 6L, 4L, 1L, 4L, 8L, 1L, 9L, 8L, 4L, 15L, 9L, 14L, 1L,
4L, 9L, 9L, 2L, 5L, 5L, 4L, 5L, 9L, 5L, 15L, 5L, 4L, 4L, 4L,
5L, 8L, 4L, 5L, 14L, 14L, 1L, 4L, 5L, 4L, 4L, 6L, 9L, 14L, 14L,
6L, 15L, 1L, 2L, 8L, 1L, 2L, 6L, 1L, 2L, 1L, 6L, 8L, 9L, 1L,
4L, 15L, 1L, 1L, 9L, 23L, 14L, 14L, 4L, 9L, 14L, 14L, 4L, 14L,
15L, 4L, 5L, 5L, 9L, 4L, 6L, 2L, 5L, 1L, 17L, 24L, 18L, 20L,
12L, 18L, 24L, 11L, 13L, 11L, 11L, 12L, 24L, 22L, 24L, 12L, 11L,
12L, 17L, 18L, 20L, 20L, 17L, 22L, 20L, 17L, 18L, 11L, 18L, 19L,
20L, 22L, 13L, 17L, 22L, 12L, 12L, 13L, 11L, 12L, 17L, 24L, 21L,
13L, 1L, 11L, 17L, 17L, 12L, 13L, 11L, 20L, 24L, 24L, 12L, 17L,
22L, 24L, 17L, 12L, 24L, 1L, 11L, 11L, 17L, 1L, 1L, 19L, 12L,
17L, 20L, 1L, 12L, 20L, 1L, 11L, 12L, 13L, 12L, 17L, 11L, 13L,
24L, 19L, 12L, 20L, 24L, 2L, 15L, 14L, 15L, 5L, 5L, 14L, 8L,
9L, 5L, 6L, 18L, 15L, 8L, 9L, 18L, 4L, 6L, 8L, 2L, 6L, 9L, 6L,
8L, 18L, 4L, 6L, 9L, 18L, 14L, 8L, 5L, 9L, 14L, 5L, 9L, 9L, 2L,
3L, 5L, 4L, 5L, 15L, 2L, 14L, 18L, 5L, 15L, 9L, 4L, 18L, 14L,
6L, 6L, 4L, 5L, 6L, 4L, 8L, 8L, 9L, 14L, 4L, 2L, 11L, 12L, 22L,
13L, 12L, 24L, 22L, 17L, 20L, 22L, 12L, 17L, 1L, 11L, 22L, 12L,
12L, 11L, 20L, 22L, 1L, 1L, 24L, 13L, 17L, 1L, 12L, 12L, 17L,
24L, 1L, 24L, 11L, 24L, 12L, 18L, 24L, 11L, 12L, 17L, 1L, 18L,
17L, 20L, 22L, 22L, 24L, 20L, 12L, 12L, 12L, 24L, 17L, 11L, 13L,
17L, 24L, 1L, 13L, 11L, 17L, 11L, 18L, 5L, 8L, 14L, 4L, 14L,
4L, 6L, 4L, 8L, 15L, 14L, 5L, 6L, 9L, 24L, 24L, 12L, 24L, 12L,
24L, 24L, 12L, 12L, 12L, 12L, 24L, 20L, 18L, 22L, 20L, 18L, 18L,
18L, 21L, 21L, 21L, 20L, 5L, 6L, 11L, 5L, 11L, 6L, 11L, 13L,
11L, 13L, 11L, 5L, 11L, 14L, 15L, 17L, 14L, 14L, 14L, 13L, 17L,
8L, 4L, 2L, 2L, 4L, 9L, 1L, 4L, 8L, 9L, 12L, 18L, 18L, 21L, 20L,
22L, 20L, 12L, 24L, 19L, 22L, 24L, 22L, 18L, 20L, 12L, 18L, 18L,
20L, 22L, 20L, 20L, 18L, 12L, 19L, 20L, 12L, 12L, 24L, 18L, 12L,
18L, 12L, 21L, 12L, 18L, 22L, 12L, 11L, 14L, 14L, 11L, 5L, 5L,
13L, 11L, 14L, 16L, 14L, 13L, 11L, 14L, 14L, 11L, 13L, 16L, 11L,
5L, 11L, 5L, 5L, 13L, 13L, 14L, 6L, 17L, 5L, 3L, 4L, 8L, 1L,
4L, 1L, 9L, 9L, 2L, 1L, 4L, 9L, 2L, 4L, 9L, 1L, 2L, 9L, 2L, 24L,
21L, 22L, 12L, 24L, 18L, 22L, 17L, 20L, 21L, 17L, 20L, 15L, 21L,
24L, 11L, 12L, 11L, 11L, 18L, 21L, 22L, 12L, 18L, 24L, 11L, 15L,
11L, 21L, 11L, 12L, 20L, 11L, 19L, 18L, 20L, 18L, 22L, 12L, 17L,
11L, 12L, 20L, 21L, 11L, 24L, 18L, 19L, 20L, 24L, 2L, 4L, 4L,
13L, 6L, 2L, 5L, 2L, 3L, 4L, 14L, 5L, 6L, 14L, 2L, 4L, 6L, 14L,
3L, 5L, 6L, 8L, 14L, 3L, 6L, 5L, 5L, 6L, 1L, 9L, 6L, 2L, 9L,
1L, 6L, 2L, 14L, 6L, 5L, 8L, 13L, 14L, 5L, 6L, 4L, 8L, 14L, 1L,
3L, 6L, 2L, 4L, 4L, 6L, 13L, 14L, 13L, 14L, 2L, 13L, 14L, 2L,
13L, 2L, 5L, 8L, 17L, 15L, 19L, 21L, 19L, 18L, 15L, 18L, 21L,
17L, 19L, 15L, 18L, 20L, 22L, 21L, 19L, 19L, 20L, 18L, 21L, 22L,
15L, 20L, 15L, 18L, 19L, 19L, 22L, 22L, 18L, 21L, 19L, 12L, 7L,
12L, 24L, 14L, 11L, 14L, 11L, 24L, 12L, 13L, 14L, 14L, 24L, 12L,
24L, 24L, 12L, 13L, 24L, 11L, 24L, 14L, 14L, 24L, 10L, 8L, 9L,
11L, 9L, 8L, 12L, 12L, 11L, 13L, 11L, 12L, 8L, 11L, 12L, 13L,
14L, 11L, 13L, 1L, 5L, 3L, 5L, 3L, 3L, 2L, 3L, 4L, 2L, 4L, 5L,
6L, 1L, 1L, 2L, 3L, 5L, 5L, 2L, 2L, 1L, 2L, 1L, 3L, 4L, 2L, 5L,
1L, 2L, 3L, 1L, 2L, 4L, 2L, 4L, 5L, 6L, 2L, 4L, 5L, 11L, 24L,
12L, 19L, 24L, 20L, 24L, 1L, 11L, 12L, 23L, 21L, 7L, 11L, 19L,
18L, 12L, 11L, 12L, 12L, 11L, 12L, 24L, 11L, 24L, 20L, 19L, 22L,
9L, 9L, 10L, 11L, 10L, 12L, 1L, 1L, 10L, 11L, 11L, 20L, 21L,
24L, 18L, 21L, 12L, 9L, 21L, 20L, 24L, 11L, 24L, 11L, 24L, 22L,
11L, 11L, 19L, 18L, 21L, 11L, 18L, 12L, 3L, 2L, 13L, 4L, 15L,
4L, 3L, 5L, 13L, 14L, 16L, 3L, 13L, 2L, 5L, 14L, 5L, 14L, 5L,
2L, 4L, 15L, 13L, 2L, 13L, 15L, 3L, 6L, 14L, 13L, 2L, 3L, 2L,
5L, 17L, 2L, 14L, 3L, 5L, 14L, 5L, 14L, 17L, 16L, 4L, 14L, 4L,
5L, 13L, 2L, 2L, 16L, 5L, 6L, 17L, 17L, 19L, 19L, 21L, 17L, 24L,
12L, 20L, 18L, 12L, 12L, 18L, 24L, 22L, 12L, 24L, 18L, 24L, 21L,
18L, 12L, 24L, 21L, 19L, 21L, 17L, 20L, 20L, 24L, 20L, 18L, 20L,
21L, 22L, 21L, 17L, 24L, 22L, 24L, 12L, 12L, 22L, 12L, 20L, 20L,
18L, 17L, 21L, 19L, 19L, 18L, 19L, 17L, 22L, 19L, 12L, 24L, 5L,
3L, 11L, 3L, 13L, 4L, 14L, 4L, 11L, 11L, 14L, 3L, 15L, 14L, 5L,
11L, 6L, 3L, 15L, 4L, 15L, 14L, 5L, 3L, 4L, 13L, 5L, 6L, 14L,
6L, 11L, 3L, 4L, 13L, 14L, 13L, 4L, 11L, 3L, 5L, 4L, 14L, 6L,
14L, 13L, 11L, 6L, 3L, 14L, 3L, 4L, 15L, 5L, 3L, 15L, 4L, 13L,
14L, 5L, 4L, 11L, 3L, 3L, 11L, 5L, 4L, 14L, 5L, 3L, 11L, 14L,
4L, 5L, 4L, 11L, 11L, 5L, 4L, 11L, 6L, 1L, 2L, 7L, 1L, 8L, 2L,
2L, 16L, 2L, 2L, 1L, 2L, 1L, 9L, 16L, 9L, 8L, 2L, 2L, 2L, 8L,
2L, 2L, 2L, 9L, 8L, 2L, 1L, 1L, 1L, 9L, 1L, 9L, 1L, 2L, 1L, 1L,
11L, 22L, 21L, 2L, 24L, 11L, 21L, 2L, 24L, 18L, 20L, 12L, 8L,
21L, 20L, 24L, 2L, 23L, 21L, 20L, 12L, 24L, 21L, 12L, 2L, 12L,
24L, 21L, 22L, 19L, 18L, 21L, 21L, 19L, 19L, 2L, 18L, 21L, 24L,
24L, 11L, 12L, 11L, 18L, 12L, 24L, 21L, 12L, 2L, 8L, 23L, 24L,
2L, 11L, 2L, 10L, 2L, 10L, 21L, 12L, 8L, 22L, 19L, 8L, 20L, 19L,
10L, 19L, 18L, 23L, 19L, 10L, 2L, 11L, 2L, 21L, 20L, 21L, 18L,
11L, 18L, 12L, 23L, 20L, 16L, 7L, 1L, 5L, 6L, 16L, 7L, 5L, 7L,
5L, 6L, 4L, 5L, 13L, 6L, 17L, 1L, 3L, 1L, 4L, 4L, 5L, 6L, 15L,
14L, 6L, 9L, 5L, 9L, 1L, 4L, 6L, 17L, 14L, 6L, 14L, 6L, 1L, 4L,
5L, 6L, 6L, 15L, 3L, 14L, 1L, 3L, 13L, 3L, 17L, 16L, 1L, 5L,
9L, 3L, 6L, 14L, 1L, 17L, 16L, 17L, 4L, 17L, 15L, 9L, 5L, 13L,
5L, 16L, 17L, 5L, 6L, 1L, 5L, 9L, 1L, 5L, 14L, 9L, 3L, 4L, 6L,
6L, 17L, 14L, 10L, 11L, 24L, 23L, 11L, 10L, 20L, 11L, 22L, 19L,
18L, 11L, 24L, 17L, 22L, 20L, 13L, 12L, 12L, 24L, 18L, 11L, 12L,
18L, 22L, 21L, 20L, 12L, 24L, 23L, 24L, 10L, 11L, 24L, 21L, 12L,
22L, 24L, 17L, 12L, 24L, 22L, 18L, 18L, 17L, 11L, 20L, 19L, 12L,
18L, 17L, 22L, 17L, 13L, 19L, 17L, 12L, 20L, 10L, 12L, 12L, 17L,
24L, 13L, 23L, 20L, 12L, 20L, 20L, 11L, 12L, 19L, 22L, 20L, 13L,
7L, 3L, 4L, 14L, 2L, 5L, 8L, 16L, 5L, 9L, 14L, 15L, 2L, 6L, 2L,
5L, 7L, 15L, 16L, 3L, 4L, 9L, 14L, 6L, 9L, 1L, 1L, 7L, 15L, 8L,
1L, 15L, 4L, 5L, 6L, 7L, 5L, 9L, 8L, 5L, 5L, 15L, 16L, 6L, 9L,
1L, 4L, 15L, 2L, 14L, 5L, 1L, 9L, 16L, 4L, 4L, 8L, 5L, 9L, 9L,
1L, 5L, 7L, 15L, 15L, 12L, 11L, 11L, 22L, 24L, 12L, 24L, 17L,
20L, 20L, 13L, 12L, 24L, 22L, 12L, 12L, 18L, 20L, 20L, 12L, 18L,
20L, 22L, 11L, 18L, 22L, 13L, 18L, 22L, 24L, 20L, 20L, 23L, 17L,
18L, 22L, 18L, 20L, 11L, 17L, 12L, 12L, 24L, 22L, 12L, 18L, 22L,
23L, 11L, 24L, 13L, 22L, 19L, 18L, 23L, 12L, 18L, 20L, 18L, 22L,
24L, 13L, 20L, 13L, 12L, 23L, 13L, 13L, 20L, 23L, 12L, 17L, 20L,
23L, 11L, 23L, 4L, 5L, 9L, 3L, 15L, 1L, 3L, 9L, 15L, 2L, 5L,
16L, 15L, 16L, 8L, 1L, 14L, 16L, 5L, 6L, 5L, 9L, 2L, 5L, 9L,
8L, 3L, 1L, 1L, 1L, 5L, 15L, 15L, 8L, 14L, 5L, 6L, 4L, 6L, 9L,
8L, 14L, 2L, 14L, 15L, 1L, 5L, 1L, 1L, 9L, 15L, 15L, 16L, 14L,
2L, 6L, 9L, 3L, 6L, 14L, 9L, 8L, 5L, 9L, 14L, 4L, 5L, 14L, 4L,
3L, 4L, 14L, 7L, 3L, 5L, 7L, 3L, 6L, 15L, 9L, 8L, 7L, 15L, 10L,
9L, 8L, 15L, 15L, 6L, 8L, 15L, 14L, 9L, 9L, 2L, 14L, 8L, 14L,
4L, 1L, 3L, 6L, 9L, 4L, 1L, 1L, 15L, 15L, 2L, 5L, 1L, 2L, 5L,
15L, 14L, 6L, 15L, 1L, 3L, 15L, 6L, 4L, 4L, 15L, 2L, 9L, 14L,
9L, 1L, 14L, 7L, 4L, 15L, 1L, 15L, 2L, 5L, 9L, 5L, 10L, 9L, 5L,
1L, 15L, 24L, 20L, 13L, 11L, 12L, 24L, 19L, 18L, 17L, 11L, 17L,
11L, 21L, 22L, 23L, 20L, 23L, 13L, 24L, 12L, 18L, 16L, 12L, 12L,
16L, 22L, 11L, 11L, 18L, 12L, 24L, 12L, 19L, 16L, 23L, 11L, 22L,
11L, 21L, 11L, 18L, 22L, 13L, 24L, 19L, 24L, 22L, 20L, 22L, 12L,
20L, 18L, 16L, 22L, 13L, 18L, 22L, 13L, 13L, 12L, 17L, 17L, 21L,
22L, 20L, 12L, 20L, 12L, 18L, 21L, 21L, 23L, 17L, 11L, 12L, 16L,
19L, 20L, 11L, 18L, 20L, 18L, 18L, 17L, 20L, 11L, 3L, 6L, 4L,
3L, 2L, 6L, 3L, 4L, 2L, 6L, 9L, 3L, 1L, 3L, 4L, 8L, 8L, 1L, 2L,
8L, 1L, 4L, 9L, 2L, 4L, 8L, 5L, 5L, 9L, 6L, 1L, 4L, 2L, 3L, 6L,
8L, 4L, 8L, 1L, 3L, 2L, 7L, 1L, 4L, 6L, 8L, 1L, 9L, 5L, 8L, 3L,
4L, 5L, 5L, 7L, 4L, 2L, 9L, 9L, 5L, 3L, 6L, 1L, 6L, 8L, 5L, 9L,
4L, 6L, 2L, 5L, 5L, 15L, 14L, 13L, 11L, 13L, 24L, 13L, 12L, 24L,
18L, 15L, 12L, 24L, 14L, 12L, 18L, 14L, 15L, 24L, 17L, 11L, 24L,
24L, 18L, 14L, 10L, 15L, 12L, 14L, 13L, 18L, 11L, 11L, 15L, 24L,
17L, 11L, 12L, 15L, 17L, 14L, 13L, 12L, 24L, 11L, 18L, 14L, 12L,
18L, 13L, 12L, 17L, 12L, 14L, 12L, 17L, 14L, 12L, 12L, 18L, 11L,
24L, 17L, 15L, 11L, 12L, 11L, 15L, 11L, 18L, 13L, 20L, 16L, 19L,
23L, 20L, 20L, 21L, 22L, 16L, 22L, 22L, 22L, 19L, 19L, 22L, 21L,
23L, 19L, 22L, 20L, 16L, 19L, 23L, 20L, 20L, 21L, 20L, 16L, 19L,
22L, 23L, 20L, 19L, 20L, 16L, 12L, 11L, 19L, 20L, 24L, 11L, 16L,
18L, 22L, 20L, 18L, 24L, 23L, 12L, 18L, 20L, 24L, 11L, 12L, 17L,
22L, 24L, 17L, 12L, 11L, 18L, 20L, 21L, 24L, 17L, 21L, 24L, 12L,
12L, 17L, 18L, 11L, 22L, 20L, 12L, 12L, 11L, 11L, 18L, 6L, 12L,
21L, 6L, 21L, 17L, 20L, 22L, 6L, 21L, 20L, 11L, 17L, 18L, 19L,
23L, 20L, 20L, 6L, 12L, 17L, 21L, 22L, 6L, 24L, 12L, 6L, 11L,
22L, 11L, 23L, 11L, 17L, 19L, 20L, 24L, 12L, 23L, 20L, 12L, 16L,
22L, 20L, 14L, 7L, 1L, 4L, 8L, 15L, 3L, 5L, 3L, 2L, 5L, 8L, 4L,
8L, 13L, 13L, 3L, 4L, 9L, 3L, 4L, 14L, 9L, 14L, 4L, 8L, 5L, 8L,
15L, 14L, 2L, 3L, 1L, 5L, 14L, 3L, 8L, 13L, 1L, 5L, 15L, 1L,
2L, 8L, 14L, 1L, 2L, 14L, 15L, 9L, 8L, 2L, 3L, 4L, 14L, 15L,
1L, 3L, 4L, 1L, 15L, 1L, 9L, 2L, 8L, 13L, 5L, 2L, 4L, 4L, 13L,
2L, 4L, 10L, 9L, 9L, 8L, 14L, 15L, 2L, 13L, 14L, 10L, 1L, 5L,
15L, 9L, 5L, 9L, 2L, 2L, 2L, 11L, 8L, 2L, 3L, 14L, 11L, 1L, 2L,
6L, 12L, 2L, 4L, 14L, 13L, 1L, 3L, 11L, 5L, 14L, 4L, 5L, 14L,
4L, 11L, 8L, 2L, 12L, 8L, 11L, 2L, 5L, 11L, 14L, 4L, 11L, 4L,
1L, 6L, 2L, 14L, 11L, 14L, 1L, 1L, 6L, 9L, 6L, 8L, 4L, 9L, 4L,
1L, 3L, 12L, 1L, 12L, 11L, 8L, 4L, 14L, 13L, 12L, 13L, 5L, 9L,
2L, 13L, 6L, 14L, 1L, 14L, 5L, 12L, 13L, 19L, 24L, 17L, 17L,
24L, 18L, 19L, 22L, 17L, 20L, 15L, 18L, 22L, 22L, 24L, 22L, 22L,
22L, 20L, 18L, 22L, 18L, 24L, 20L, 21L, 19L, 20L, 17L, 18L, 22L,
17L, 18L, 18L, 19L, 18L, 17L, 19L, 20L, 18L, 20L, 24L, 22L, 24L,
12L, 17L, 1L, 8L, 23L, 19L, 5L, 12L, 23L, 17L, 13L, 19L, 5L,
13L, 17L, 1L, 5L, 13L, 1L, 3L, 5L, 10L, 19L, 15L, 13L, 23L, 21L,
23L, 17L, 8L, 23L, 21L, 13L, 17L, 17L, 1L, 19L, 12L, 21L, 13L,
1L, 5L, 13L, 5L, 13L, 12L, 8L, 12L, 21L, 5L, 12L, 19L, 3L, 17L,
15L, 8L, 19L, 13L, 17L, 12L, 12L, 17L, 19L, 13L, 15L, 17L, 12L,
8L, 1L, 3L, 5L, 12L, 19L, 13L, 15L, 23L, 17L, 1L, 13L, 15L, 1L,
8L, 1L, 12L, 5L, 1L, 23L, 8L, 1L, 12L, 8L, 23L, 19L, 5L, 8L,
5L, 1L, 15L, 17L, 12L, 13L, 19L, 10L, 8L, 1L, 3L, 8L, 15L, 13L,
17L, 5L, 23L, 8L, 13L, 8L, 13L, 17L, 12L, 8L, 13L, 15L, 5L, 19L,
3L, 1L, 13L, 5L, 1L, 12L, 13L, 3L, 12L, 8L, 19L, 15L, 13L, 5L,
23L, 21L, 2L, 6L, 24L, 14L, 18L, 20L, 4L, 6L, 6L, 16L, 18L, 9L,
22L, 7L, 6L, 4L, 24L, 20L, 6L, 24L, 9L, 2L, 22L, 9L, 14L, 7L,
6L, 14L, 18L, 9L, 22L, 20L, 24L, 11L, 4L, 11L, 2L, 6L, 18L, 2L,
22L, 4L, 6L, 14L, 2L, 24L, 14L, 18L, 2L, 2L, 4L, 16L, 22L, 14L,
2L, 24L, 22L, 14L, 18L, 22L, 9L, 14L, 24L, 11L, 9L, 18L, 22L,
20L, 24L, 24L, 9L, 20L, 22L, 18L, 11L, 4L, 6L, 2L, 16L, 2L, 2L,
11L, 4L, 16L, 9L, 18L, 22L, 20L, 4L, 9L, 14L, 11L, 22L, 20L,
7L, 20L, 9L, 24L, 6L, 4L, 9L, 2L, 11L, 2L, 20L, 11L, 6L, 9L,
24L, 18L, 22L, 20L, 14L, 9L, 22L, 20L, 11L, 2L, 9L, 14L, 11L,
7L, 22L, 20L, 2L, 4L, 20L, 24L, 2L, 4L, 6L, 14L, 18L, 9L, 14L,
4L, 6L, 9L, 14L, 11L, 2L, 6L, 18L, 7L, 9L, 20L, 24L, 4L, 14L,
22L, 11L, 2L, 6L, 9L, 14L, 2L, 2L, 11L, 4L, 16L, 18L, 7L, 9L,
14L, 22L, 13L, 14L, 19L, 18L, 19L, 13L, 14L, 22L, 13L, 20L, 14L,
17L, 21L, 24L, 22L, 21L, 20L, 24L, 13L, 14L, 15L, 14L, 20L, 14L,
17L, 18L, 17L, 18L, 19L, 22L, 24L, 22L, 14L, 17L, 14L, 17L, 17L,
22L, 24L, 13L, 14L, 14L, 14L, 21L, 15L, 15L, 21L, 18L, 24L, 21L,
13L, 19L, 13L, 22L, 14L, 22L, 24L, 17L, 20L, 13L, 22L, 13L, 19L,
20L, 18L, 17L, 24L, 21L, 20L, 24L, 20L, 17L, 20L, 19L, 14L, 15L,
24L, 21L, 4L, 5L, 6L, 11L, 2L, 4L, 9L, 9L, 11L, 1L, 2L, 4L, 11L,
8L, 1L, 9L, 12L, 9L, 12L, 12L, 11L, 3L, 2L, 5L, 12L, 2L, 5L,
9L, 1L, 4L, 8L, 1L, 9L, 12L, 1L, 1L, 6L, 9L, 12L, 12L, 11L, 11L,
3L, 11L, 2L, 6L, 9L, 12L, 3L, 4L, 12L, 2L, 4L, 6L, 12L, 8L, 3L,
4L, 6L, 8L, 1L, 6L, 12L, 1L, 5L, 12L, 1L, 5L, 6L, 12L, 9L, 1L,
12L, 9L, 11L, 4L, 1L, 4L, 11L, 1L, 2L, 4L, 1L, 2L, 5L, 8L, 8L,
1L, 3L, 4L, 5L, 5L, 9L, 12L, 1L, 6L, 11L, 1L, 6L, 12L, 12L, 18L,
22L, 21L, 13L, 12L, 24L, 12L, 11L, 11L, 20L, 13L, 11L, 21L, 19L,
12L, 20L, 17L, 11L, 18L, 12L, 22L, 18L, 24L, 12L, 14L, 17L, 12L,
14L, 18L, 12L, 11L, 17L, 18L, 11L, 12L, 15L, 24L, 18L, 11L, 11L,
17L, 24L, 12L, 20L, 13L, 14L, 11L, 24L, 12L, 14L, 17L, 11L, 17L,
19L, 19L, 20L, 14L, 19L, 24L, 22L, 24L, 14L, 19L, 24L, 15L, 12L,
22L, 12L, 13L, 14L, 18L, 17L, 11L, 22L, 12L, 13L, 18L, 11L, 14L,
15L, 18L, 21L, 20L, 5L, 3L, 1L, 4L, 9L, 1L, 4L, 1L, 2L, 3L, 6L,
9L, 6L, 9L, 8L, 1L, 4L, 5L, 1L, 4L, 1L, 5L, 2L, 6L, 1L, 2L, 5L,
6L, 4L, 3L, 4L, 4L, 2L, 9L, 4L, 8L, 5L, 3L, 8L, 1L, 3L, 6L, 3L,
2L, 6L, 9L, 8L, 6L, 1L, 6L, 1L, 3L, 4L, 4L, 6L, 1L, 2L, 1L, 5L,
6L, 1L, 3L, 4L, 1L, 4L, 6L, 9L, 1L, 5L, 1L, 6L, 1L, 2L, 9L, 6L,
8L, 3L, 9L, 12L, 12L, 24L, 24L, 12L, 18L, 18L, 12L, 18L, 11L,
12L, 24L, 11L, 11L, 12L, 12L, 24L, 24L, 24L, 18L, 11L, 11L, 12L,
18L, 11L, 12L, 11L, 11L, 19L, 18L, 17L, 11L, 18L, 17L, 11L, 12L,
18L, 18L, 17L, 24L, 24L, 24L, 11L, 17L, 11L, 12L, 3L, 5L, 22L,
14L, 1L, 23L, 8L, 4L, 5L, 6L, 2L, 22L, 20L, 13L, 1L, 23L, 14L,
20L, 16L, 5L, 21L, 7L, 5L, 22L, 4L, 1L, 5L, 5L, 10L, 1L, 14L,
13L, 2L, 22L, 15L, 1L, 2L, 4L, 5L, 15L, 5L, 6L, 23L, 2L, 4L,
8L, 2L, 5L, 6L, 2L, 3L, 5L, 16L, 4L, 6L, 22L, 20L, 15L, 13L,
1L, 15L, 14L, 1L, 5L, 8L, 21L, 20L, 1L, 2L, 6L, 14L, 13L, 22L,
8L, 9L, 16L, 13L, 1L, 5L, 6L, 1L, 6L, 23L, 19L, 10L, 22L, 7L,
12L, 19L, 24L, 11L, 18L, 22L, 24L, 19L, 18L, 22L, 12L, 17L, 22L,
18L, 17L, 17L, 22L, 21L, 12L, 24L, 19L, 18L, 12L, 24L, 12L, 24L,
22L, 19L, 22L, 20L, 21L, 11L, 11L, 20L, 12L, 24L, 22L, 11L, 12L,
11L, 24L, 13L, 11L, 24L, 17L, 21L, 18L, 18L, 17L, 24L, 11L, 21L,
12L, 21L, 20L, 11L, 12L, 12L, 11L, 24L, 24L, 18L, 11L, 12L, 11L,
20L, 12L, 13L, 19L, 22L, 11L, 22L, 18L, 17L, 13L, 11L, 17L, 22L,
13L, 4L, 9L, 1L, 3L, 15L, 1L, 2L, 4L, 9L, 1L, 6L, 2L, 8L, 1L,
5L, 6L, 1L, 2L, 6L, 2L, 9L, 8L, 5L, 15L, 1L, 5L, 8L, 14L, 5L,
5L, 15L, 2L, 9L, 8L, 15L, 14L, 2L, 8L, 15L, 6L, 1L, 4L, 6L, 1L,
8L, 5L, 15L, 5L, 8L, 3L, 2L, 14L, 4L, 3L, 6L, 1L, 9L, 14L, 1L,
6L, 1L, 4L, 5L, 5L, 6L, 8L, 1L, 6L, 8L, 14L, 1L, 1L, 3L, 5L,
8L, 5L, 6L, 14L, 6L, 1L, 15L, 1L, 6L, 14L, 16L, 17L, 18L, 19L,
21L, 18L, 13L, 20L, 12L, 24L, 12L, 21L, 13L, 17L, 22L, 20L, 13L,
24L, 12L, 20L, 13L, 24L, 22L, 17L, 19L, 24L, 22L, 12L, 22L, 14L,
17L, 18L, 14L, 12L, 22L, 16L, 18L, 18L, 18L, 22L, 24L, 22L, 13L,
14L, 17L, 21L, 22L, 14L, 22L, 17L, 24L, 24L, 12L, 14L, 19L, 23L,
20L, 19L, 12L, 14L, 18L, 22L, 14L, 18L, 21L, 14L, 13L, 22L, 19L,
14L, 13L, 24L, 22L, 18L, 12L, 17L, 12L, 1L, 2L, 3L, 8L, 3L, 11L,
1L, 5L, 7L, 2L, 4L, 15L, 1L, 5L, 11L, 15L, 2L, 5L, 9L, 8L, 6L,
2L, 3L, 4L, 8L, 10L, 1L, 9L, 2L, 6L, 8L, 5L, 15L, 11L, 4L, 8L,
1L, 3L, 6L, 8L, 1L, 4L, 5L, 9L, 7L, 11L, 8L, 2L, 6L, 8L, 5L,
5L, 1L, 3L, 9L, 3L, 9L, 6L, 11L, 4L, 5L, 7L, 5L, 8L, 7L, 1L,
6L, 6L, 9L, 1L, 2L, 11L, 7L, 1L, 2L, 3L, 4L, 6L, 11L, 8L, 1L,
13L, 14L, 18L, 12L, 14L, 19L, 20L, 14L, 24L, 21L, 12L, 19L, 13L,
16L, 22L, 14L, 12L, 13L, 14L, 20L, 12L, 22L, 13L, 12L, 19L, 12L,
14L, 17L, 12L, 23L, 19L, 22L, 13L, 20L, 17L, 22L, 14L, 22L, 13L,
24L, 17L, 22L, 12L, 21L, 13L, 17L, 24L, 24L, 22L, 18L, 16L, 18L,
20L, 13L, 14L, 16L, 18L, 14L, 21L, 17L, 24L, 23L, 12L, 13L, 14L,
18L, 24L, 21L, 24L, 13L, 20L, 23L, 20L, 14L, 21L, 22L, 20L, 22L,
18L, 24L, 22L, 21L, 6L, 5L, 4L, 15L, 1L, 2L, 1L, 9L, 1L, 5L,
9L, 8L, 2L, 3L, 1L, 9L, 2L, 3L, 11L, 10L, 1L, 15L, 8L, 6L, 9L,
1L, 1L, 3L, 7L, 4L, 3L, 6L, 8L, 15L, 5L, 8L, 2L, 1L, 5L, 9L,
15L, 1L, 1L, 4L, 1L, 5L, 7L, 7L, 1L, 4L, 1L, 9L, 1L, 11L, 17L,
24L, 12L, 20L, 12L, 20L, 12L, 14L, 19L, 24L, 24L, 22L, 14L, 20L,
24L, 20L, 18L, 22L, 20L, 14L, 12L, 22L, 17L, 12L, 24L, 18L, 24L,
18L, 12L, 22L, 19L, 20L, 19L, 20L, 18L, 24L, 12L, 20L, 14L, 12L,
18L, 14L, 14L, 18L, 21L, 24L, 12L, 13L, 22L, 19L, 24L, 14L, 19L,
22L, 20L, 13L, 17L, 18L, 1L, 6L, 3L, 3L, 11L, 2L, 3L, 4L, 1L,
8L, 4L, 3L, 4L, 11L, 11L, 1L, 8L, 3L, 1L, 11L, 1L, 5L, 5L, 9L,
1L, 2L, 5L, 11L, 3L, 6L, 8L, 9L, 1L, 4L, 15L, 15L, 9L, 8L, 4L,
3L, 1L, 11L, 4L, 4L, 5L, 9L, 8L, 9L, 11L, 11L, 8L, 9L, 5L, 8L,
5L, 14L, 13L, 12L, 18L, 12L, 19L, 22L, 18L, 20L, 12L, 18L, 24L,
19L, 13L, 20L, 22L, 17L, 13L, 14L, 12L, 14L, 20L, 22L, 17L, 21L,
24L, 24L, 20L, 21L, 12L, 19L, 12L, 18L, 17L, 16L, 14L, 19L, 18L,
14L, 12L, 13L, 14L, 18L, 13L, 12L, 18L, 14L, 3L, 24L, 22L, 20L,
24L, 22L, 17L, 12L, 14L, 17L, 12L, 6L, 3L, 6L, 10L, 1L, 6L, 6L,
15L, 8L, 1L, 9L, 2L, 6L, 2L, 3L, 1L, 3L, 1L, 4L, 11L, 9L, 3L,
5L, 9L, 3L, 9L, 6L, 9L, 1L, 9L, 15L, 15L, 8L, 4L, 2L, 5L, 7L,
4L, 4L, 8L, 11L, 19L, 20L, 18L, 20L, 16L, 24L, 12L, 12L, 18L,
12L, 20L, 12L, 22L, 14L, 14L, 12L, 13L, 17L, 22L, 20L, 17L, 12L,
14L, 12L, 17L, 18L, 24L, 13L, 20L, 12L, 12L, 22L, 24L, 13L, 20L,
13L, 14L, 14L, 13L, 24L, 12L, 12L, 23L, 24L, 20L, 18L, 21L, 18L,
22L, 17L, 20L, 22L, 13L, 12L, 14L, 20L, 14L, 13L, 24L, 12L, 3L,
5L, 1L, 4L, 11L, 8L, 3L, 8L, 2L, 4L, 11L, 7L, 1L, 5L, 3L, 9L,
4L, 6L, 11L, 2L, 3L, 5L, 11L, 1L, 9L, 2L, 1L, 1L, 1L, 4L, 7L,
1L, 11L, 9L, 4L, 8L, 6L, 5L, 6L, 9L, 1L, 3L, 1L, 4L, 6L, 5L,
9L, 2L, 11L, 15L, 1L, 11L, 9L, 11L, 12L, 13L, 14L, 17L, 17L,
19L, 12L, 20L, 24L, 20L, 24L, 12L, 22L, 16L, 18L, 20L, 19L, 24L,
22L, 13L, 12L, 17L, 18L, 23L, 17L, 12L, 12L, 14L, 16L, 14L, 18L,
22L, 14L, 22L, 20L, 23L, 22L, 19L, 20L, 12L, 20L, 17L, 20L, 13L,
24L, 14L, 17L, 17L, 12L, 14L, 19L, 24L, 22L, 12L, 20L, 14L, 18L,
12L, 23L, 20L, 11L, 2L, 3L, 8L, 3L, 11L, 8L, 2L, 5L, 2L, 10L,
1L, 3L, 9L, 11L, 8L, 1L, 2L, 5L, 4L, 8L, 2L, 4L, 6L, 11L, 15L,
5L, 11L, 11L, 7L, 6L, 11L, 1L, 2L, 2L, 11L, 1L, 6L, 7L, 1L, 1L,
5L, 8L, 11L, 1L, 6L, 5L, 2L, 11L, 9L, 15L, 5L, 8L, 7L, 2L, 11L,
5L, 6L, 9L, 1L, 15L, 11L, 1L, 6L, 2L, 6L, 2L, 5L, 6L, 11L, 4L,
1L, 2L, 8L, 4L, 11L, 10L, 9L, 18L, 15L, 20L, 18L, 22L, 13L, 17L,
20L, 18L, 19L, 22L, 22L, 18L, 17L, 18L, 13L, 22L, 17L, 18L, 22L,
14L, 17L, 22L, 19L, 20L, 17L, 17L, 18L, 19L, 17L, 18L, 19L, 22L,
18L, 22L, 15L, 22L, 14L, 17L, 20L, 18L, 21L, 14L, 17L, 19L, 19L,
20L, 13L, 22L, 21L, 13L, 14L, 14L, 2L, 3L, 11L, 11L, 4L, 5L,
11L, 9L, 1L, 24L, 12L, 2L, 12L, 9L, 9L, 2L, 4L, 1L, 12L, 9L,
2L, 12L, 1L, 24L, 24L, 11L, 12L, 2L, 5L, 12L, 9L, 1L, 2L, 1L,
1L, 2L, 2L, 6L, 4L, 5L, 12L, 11L, 11L, 2L, 5L, 12L, 11L, 6L,
24L, 12L, 9L, 4L, 9L, 3L, 5L, 9L, 11L, 9L, 1L, 4L, 9L, 4L, 6L,
9L, 2L, 1L, 3L, 5L, 24L, 11L, 1L, 9L, 5L, 24L, 12L, 24L, 11L,
22L, 21L, 13L, 19L, 20L, 13L, 13L, 12L, 24L, 17L, 18L, 12L, 13L,
22L, 13L, 14L, 18L, 13L, 21L, 24L, 24L, 12L, 13L, 24L, 21L, 23L,
20L, 14L, 22L, 16L, 21L, 18L, 12L, 20L, 13L, 18L, 12L, 24L, 22L,
17L, 21L, 14L, 18L, 12L, 22L, 17L, 12L, 12L, 24L, 18L, 12L, 22L,
12L, 22L, 23L, 12L, 22L, 14L, 17L, 12L, 22L, 12L, 22L, 12L, 13L,
24L, 12L, 12L, 24L, 21L, 20L, 2L, 3L, 5L, 6L, 2L, 11L, 15L, 1L,
4L, 1L, 5L, 11L, 11L, 1L, 15L, 8L, 7L, 7L, 3L, 9L, 9L, 7L, 1L,
2L, 6L, 11L, 1L, 2L, 5L, 2L, 2L, 5L, 4L, 9L, 5L, 8L, 11L, 3L,
7L, 1L, 1L, 15L, 5L, 2L, 9L, 1L, 3L, 9L, 2L, 9L, 3L, 5L, 1L,
11L, 4L, 11L, 8L, 11L, 4L, 5L, 9L, 19L, 12L, 24L, 16L, 24L, 12L,
22L, 24L, 12L, 14L, 24L, 18L, 12L, 20L, 12L, 14L, 22L, 13L, 18L,
12L, 14L, 21L, 17L, 12L, 14L, 22L, 14L, 22L, 18L, 19L, 12L, 22L,
18L, 18L, 18L, 17L, 20L, 18L, 12L, 13L, 24L, 17L, 18L, 21L, 18L,
19L, 12L, 23L, 21L, 22L, 16L, 20L, 24L, 12L, 13L, 16L, 20L, 14L,
4L, 11L, 11L, 4L, 1L, 2L, 9L, 1L, 9L, 8L, 1L, 11L, 5L, 11L, 1L,
4L, 1L, 1L, 11L, 4L, 6L, 9L, 6L, 1L, 9L, 11L, 8L, 6L, 15L, 5L,
7L, 6L, 6L, 5L, 11L, 1L, 1L, 10L, 11L, 9L, 11L, 9L, 9L, 11L,
4L, 6L, 9L, 4L, 6L, 2L, 9L, 8L, 3L, 5L, 6L, 5L, 1L, 11L, 16L,
12L, 22L, 24L, 16L, 12L, 22L, 14L, 17L, 13L, 12L, 23L, 19L, 12L,
14L, 12L, 20L, 14L, 18L, 21L, 19L, 22L, 14L, 18L, 20L, 13L, 18L,
22L, 13L, 24L, 18L, 20L, 12L, 20L, 21L, 12L, 17L, 16L, 14L, 17L,
23L, 14L, 22L, 12L, 3L, 6L, 9L, 1L, 3L, 5L, 11L, 1L, 4L, 5L,
15L, 7L, 1L, 4L, 8L, 4L, 15L, 3L, 6L, 1L, 6L, 11L, 9L, 3L, 6L,
9L, 3L, 11L, 9L, 2L, 6L, 11L, 9L, 2L, 9L, 5L, 11L, 5L, 8L, 6L,
3L, 1L, 4L, 6L, 10L, 5L, 6L, 11L, 8L, 2L, 6L, 1L, 4L, 11L, 9L,
7L, 14L, 20L, 22L, 12L, 24L, 22L, 22L, 18L, 12L, 14L, 12L, 24L,
22L, 14L, 21L, 22L, 14L, 14L, 18L, 14L, 18L, 14L, 17L, 19L, 18L,
17L, 12L, 18L, 24L, 12L, 18L, 12L, 22L, 13L, 20L, 3L, 3L, 6L,
1L, 2L, 9L, 9L, 8L, 4L, 9L, 8L, 2L, 5L, 1L, 4L, 11L, 8L, 15L,
9L, 11L, 9L, 5L, 6L, 5L, 1L, 9L, 4L, 9L, 1L, 9L, 4L, 24L, 13L,
17L, 12L, 22L, 12L, 12L, 18L, 24L, 22L, 22L, 24L, 22L, 17L, 22L,
19L, 24L, 18L, 12L, 14L, 18L, 18L, 18L, 13L, 22L, 13L, 14L, 20L,
14L, 22L, 24L, 12L, 21L, 12L, 20L, 1L, 3L, 11L, 9L, 15L, 1L,
4L, 15L, 3L, 4L, 15L, 2L, 11L, 5L, 9L, 8L, 5L, 1L, 9L, 9L, 15L,
3L, 5L, 15L, 9L, 2L, 4L, 5L, 6L, 15L, 9L, 9L, 24L, 14L, 19L,
23L, 18L, 20L, 18L, 20L, 17L, 18L, 20L, 24L, 24L, 12L, 22L, 12L,
18L, 20L, 13L, 24L, 17L, 20L, 24L, 14L, 12L, 14L, 20L, 13L, 22L,
18L, 20L, 23L, 17L, 17L, 24L, 12L, 13L, 20L, 24L, 18L, 22L, 20L,
12L, 14L, 24L, 14L, 20L, 24L, 14L, 22L, 14L, 18L, 24L, 17L, 20L,
12L, 24L, 20L, 20L, 14L, 23L, 20L, 16L, 17L, 24L, 1L, 3L, 4L,
6L, 15L, 1L, 4L, 1L, 1L, 9L, 1L, 2L, 2L, 6L, 3L, 8L, 1L, 5L,
15L, 6L, 11L, 11L, 8L, 3L, 1L, 3L, 11L, 1L, 4L, 9L, 2L, 11L,
10L, 15L, 2L, 1L, 2L, 11L, 3L, 1L, 6L, 2L, 4L, 5L, 9L, 9L, 5L,
9L, 9L, 9L, 4L, 9L, 1L, 9L, 9L, 2L, 2L, 5L, 9L, 8L, 5L, 11L,
9L, 1L, 9L, 11L, 8L, 4L, 5L, 6L, 8L, 15L, 18L, 18L, 24L, 22L,
24L, 12L, 20L, 12L, 20L, 22L, 14L, 16L, 24L, 18L, 12L, 14L, 14L,
19L, 14L, 12L, 18L, 20L, 24L, 20L, 22L, 17L, 18L, 16L, 17L, 12L,
16L, 24L, 16L, 21L, 16L, 13L, 12L, 21L, 17L, 24L, 1L, 3L, 4L,
3L, 15L, 9L, 3L, 4L, 6L, 9L, 15L, 15L, 8L, 3L, 9L, 6L, 4L, 11L,
11L, 15L, 1L, 1L, 2L, 2L, 5L, 5L, 8L, 11L, 4L, 2L, 5L, 3L, 4L,
5L, 11L, 11L, 9L, 3L, 6L, 22L, 12L, 17L, 16L, 22L, 20L, 12L,
22L, 20L, 12L, 24L, 17L, 12L, 18L, 24L, 20L, 19L, 16L, 14L, 12L,
18L, 20L, 19L, 17L, 24L, 24L, 17L, 13L, 14L, 17L, 13L, 17L, 14L,
11L, 3L, 10L, 8L, 8L, 4L, 1L, 4L, 8L, 10L, 3L, 4L, 11L, 7L, 8L,
11L, 11L, 3L, 15L, 11L, 5L, 5L, 10L, 2L, 3L, 6L, 4L, 4L, 5L,
9L, 3L, 1L, 5L, 15L, 5L, 4L, 8L, 8L, 11L, 11L, 11L, 6L, 18L,
18L, 12L, 19L, 12L, 14L, 24L, 17L, 6L, 24L, 12L, 20L, 12L, 14L,
19L, 12L, 20L, 18L, 24L, 24L, 14L, 18L, 12L, 12L, 14L, 23L, 12L,
14L, 20L, 20L, 18L, 24L, 17L, 19L, 17L, 6L, 12L, 6L, 8L, 9L,
9L, 11L, 3L, 4L, 13L, 2L, 5L, 11L, 4L, 3L, 3L, 4L, 11L, 5L, 1L,
7L, 13L, 8L, 3L, 8L, 15L, 4L, 9L, 15L, 3L, 4L, 5L, 13L, 1L, 5L,
11L, 4L, 11L, 2L, 9L, 8L, 20L, 12L, 18L, 19L, 24L, 12L, 24L,
20L, 12L, 18L, 12L, 12L, 17L, 24L, 12L, 24L, 20L, 22L, 12L, 18L,
14L, 17L, 24L, 23L, 14L, 17L, 17L, 18L, 12L, 24L, 18L, 8L, 9L,
5L, 9L, 1L, 3L, 5L, 4L, 1L, 11L, 5L, 11L, 8L, 15L, 8L, 4L, 8L,
11L, 4L, 2L, 13L, 2L, 5L, 8L, 12L, 24L, 6L, 12L, 16L, 14L, 17L,
17L, 19L, 18L, 12L, 6L, 12L, 14L, 24L, 17L, 6L, 20L, 23L, 20L,
21L, 22L, 20L, 22L, 12L, 20L, 2L, 12L, 12L, 17L, 18L, 18L, 6L,
19L, 14L, 24L, 6L, 21L, 14L, 24L, 17L, 18L, 6L, 2L, 11L, 11L,
1L, 5L, 1L, 5L, 11L, 9L, 2L, 2L, 3L, 8L, 13L, 3L, 3L, 8L, 4L,
8L, 1L, 5L, 15L, 5L, 9L, 1L, 7L, 1L, 4L, 2L, 4L, 5L, 8L, 8L,
9L, 13L, 5L, 4L, 11L, 13L, 3L, 9L, 1L, 2L, 5L, 5L, 1L, 11L, 11L,
8L, 3L, 8L, 22L, 14L, 12L, 22L, 22L, 17L, 12L, 22L, 6L, 12L,
21L, 17L, 23L, 14L, 6L, 12L, 21L, 17L, 20L, 20L, 17L, 12L, 24L,
22L, 20L, 24L, 16L, 12L, 22L, 6L, 17L, 6L, 12L, 22L, 17L, 19L,
21L, 17L, 18L, 20L, 14L, 18L, 20L, 24L, 14L, 12L, 12L, 5L, 4L,
11L, 9L, 13L, 9L, 9L, 1L, 2L, 5L, 8L, 1L, 8L, 4L, 11L, 9L, 3L,
8L, 2L, 11L, 11L, 8L, 9L, 8L, 3L, 9L, 11L, 1L, 8L, 2L, 5L, 8L,
5L, 1L, 3L, 5L, 4L, 1L, 2L, 3L, 13L, 3L, 11L, 9L, 7L, 4L, 13L,
3L, 20L, 18L, 6L, 12L, 12L, 12L, 6L, 17L, 12L, 12L, 14L, 20L,
24L, 14L, 21L, 18L, 23L, 12L, 24L, 21L, 16L, 12L, 17L, 6L, 16L,
17L, 6L, 21L, 12L, 23L, 12L, 3L, 5L, 4L, 2L, 5L, 4L, 9L, 1L,
4L, 8L, 5L, 2L, 9L, 13L, 3L, 5L, 2L, 5L, 4L, 5L, 8L, 13L, 11L,
11L, 9L, 8L, 2L, 5L, 13L, 2L, 4L, 11L, 11L, 1L, 2L, 5L, 1L, 11L,
2L, 16L, 17L, 6L, 12L, 24L, 12L, 6L, 14L, 6L, 19L, 6L, 12L, 21L,
6L, 12L, 12L, 20L, 12L, 6L, 12L, 17L, 18L, 19L, 20L, 6L, 12L,
18L, 6L, 12L, 14L, 18L, 24L, 17L, 23L, 6L, 12L, 20L, 18L, 16L,
16L, 24L, 12L, 14L, 6L, 16L, 18L, 6L, 6L, 14L, 18L, 16L, 6L,
14L, 6L, 18L, 6L, 17L, 18L, 6L, 16L, 24L, 6L, 17L, 24L, 6L, 21L,
6L, 12L, 11L, 13L, 1L, 3L, 4L, 1L, 4L, 5L, 1L, 5L, 15L, 1L, 2L,
4L, 5L, 13L, 4L, 5L, 9L, 2L, 8L, 15L, 3L, 5L, 8L, 9L, 11L, 9L,
1L, 9L, 1L, 2L, 1L, 2L, 5L, 1L, 13L, 9L, 1L, 2L, 5L, 5L, 3L,
1L, 4L, 2L, 1L, 15L, 9L, 13L, 1L, 2L, 9L, 3L, 1L, 1L, 11L, 8L,
2L, 5L, 5L, 9L, 7L, 6L, 21L, 17L, 6L, 16L, 6L, 6L, 12L, 12L,
12L, 16L, 12L, 21L, 6L, 20L, 12L, 12L, 6L, 22L, 20L, 6L, 21L,
6L, 24L, 16L, 24L, 14L, 6L, 12L, 12L, 22L, 12L, 18L, 24L, 6L,
14L, 19L, 6L, 20L, 17L, 14L, 16L, 6L, 6L, 12L, 16L, 6L, 16L,
6L, 6L, 4L, 5L, 1L, 2L, 9L, 4L, 9L, 2L, 9L, 13L, 3L, 5L, 13L,
2L, 3L, 1L, 8L, 4L, 5L, 8L, 4L, 5L, 2L, 3L, 2L, 9L, 5L, 2L, 11L,
2L, 2L, 4L, 11L, 1L, 13L, 9L, 1L, 4L, 5L, 15L, 13L, 2L, 7L, 1L,
2L, 5L, 9L, 1L, 10L, 5L, 8L, 13L, 11L, 9L, 2L, 11L, 12L, 21L,
6L, 6L, 21L, 6L, 6L, 24L, 6L, 14L, 16L, 6L, 6L, 6L, 16L, 18L,
22L, 12L, 12L, 16L, 19L, 22L, 20L, 18L, 12L, 12L, 24L, 12L, 18L,
12L, 24L, 6L, 12L, 24L, 19L, 14L, 21L, 6L, 22L, 6L, 14L, 16L,
18L, 17L, 6L, 24L, 21L, 6L, 6L, 6L, 17L, 3L, 4L, 3L, 9L, 8L,
15L, 2L, 2L, 5L, 2L, 3L, 5L, 3L, 5L, 8L, 4L, 3L, 2L, 4L, 8L,
9L, 1L, 13L, 2L, 2L, 5L, 15L, 13L, 11L, 2L, 4L, 9L, 9L, 5L, 10L,
1L, 9L, 8L, 2L, 1L, 4L, 11L, 1L, 8L, 1L, 11L, 1L, 5L, 7L, 1L,
4L, 14L, 17L, 18L, 6L, 12L, 20L, 14L, 16L, 6L, 20L, 14L, 6L,
12L, 14L, 18L, 6L, 18L, 24L, 21L, 20L, 14L, 22L, 20L, 14L, 12L,
18L, 6L, 22L, 20L, 12L, 18L, 6L, 22L, 22L, 6L, 20L, 12L, 24L,
12L, 14L, 6L, 22L, 14L, 24L, 6L, 17L, 24L, 20L, 24L, 6L, 24L,
14L, 19L, 18L, 12L, 22L, 24L, 12L, 22L, 18L, 22L, 17L, 6L, 12L,
18L, 22L, 18L, 24L, 22L, 18L, 19L, 18L, 24L, 6L, 14L, 18L, 12L,
20L, 6L, 12L, 22L, 20L, 14L, 6L, 21L, 24L, 22L, 20L, 14L, 17L,
18L, 6L, 20L, 14L, 24L, 6L, 12L, 22L, 20L, 16L, 24L, 6L, 12L,
17L, 12L, 14L, 17L, 24L, 12L, 20L, 19L, 6L, 14L, 18L, 6L, 12L,
20L, 2L, 3L, 13L, 8L, 1L, 3L, 4L, 11L, 13L, 9L, 1L, 4L, 13L,
7L, 8L, 8L, 13L, 8L, 11L, 9L, 1L, 4L, 1L, 2L, 13L, 8L, 11L, 13L,
3L, 15L, 13L, 1L, 11L, 8L, 1L, 1L, 2L, 9L, 1L, 1L, 2L, 5L, 11L,
4L, 9L, 8L, 1L, 1L, 9L, 1L, 13L, 1L, 3L, 11L, 2L, 11L, 13L, 1L,
5L, 13L, 1L, 3L, 1L, 1L, 2L, 1L, 5L, 1L, 8L, 1L, 11L, 1L, 11L,
13L, 5L, 13L, 11L, 15L, 8L, 1L, 10L, 8L, 1L, 5L, 8L, 1L, 4L,
5L, 13L, 9L, 8L, 4L, 13L, 13L, 1L, 11L, 1L, 3L, 13L, 1L, 2L,
9L, 3L, 2L, 1L, 11L, 8L, 9L, 1L, 2L, 11L, 9L, 2L, 4L, 8L, 9L,
17L, 6L, 14L, 17L, 24L, 21L, 18L, 6L, 19L, 24L, 21L, 12L, 24L,
12L, 12L, 18L, 16L, 19L, 24L, 14L, 21L, 18L, 6L, 21L, 24L, 22L,
17L, 6L, 12L, 14L, 12L, 17L, 18L, 12L, 22L, 24L, 12L, 14L, 2L,
3L, 4L, 4L, 2L, 5L, 8L, 2L, 3L, 13L, 2L, 10L, 9L, 4L, 9L, 8L,
7L, 8L, 8L, 2L, 5L, 1L, 3L, 5L, 5L, 11L, 3L, 3L, 7L, 1L, 2L,
5L, 4L, 13L, 2L, 11L, 2L, 7L, 13L, 19L, 18L, 22L, 21L, 12L, 19L,
6L, 17L, 12L, 21L, 12L, 20L, 12L, 14L, 12L, 24L, 21L, 12L, 18L,
12L, 22L, 6L, 14L, 17L, 6L, 6L, 12L, 24L, 17L, 12L, 22L, 20L,
17L, 5L, 1L, 4L, 4L, 8L, 13L, 7L, 3L, 9L, 8L, 3L, 5L, 2L, 7L,
4L, 2L, 11L, 10L, 11L, 9L, 4L, 15L, 3L, 7L, 3L, 5L, 8L, 2L, 1L,
2L, 2L, 8L, 1L, 5L, 1L, 3L, 4L, 10L, 4L, 11L, 2L, 1L, 13L, 1L,
2L, 5L, 11L, 9L, 6L, 20L, 17L, 12L, 23L, 14L, 20L, 14L, 21L,
17L, 19L, 24L, 20L, 6L, 17L, 12L, 20L, 24L, 14L, 16L, 17L, 19L,
12L, 17L, 18L, 6L, 12L, 16L, 18L, 14L, 24L, 12L, 18L, 17L, 17L,
12L, 17L, 19L, 12L, 3L, 1L, 3L, 9L, 1L, 8L, 3L, 4L, 5L, 11L,
13L, 4L, 3L, 4L, 8L, 4L, 2L, 1L, 13L, 1L, 2L, 2L, 5L, 1L, 2L,
2L, 1L, 2L, 8L, 11L, 2L, 1L, 9L, 8L, 13L, 2L, 3L, 2L, 4L, 13L,
1L, 2L, 1L, 2L, 3L, 5L, 4L, 2L, 5L, 9L, 8L, 11L, 11L, 14L, 18L,
20L, 19L, 14L, 17L, 18L, 14L, 23L, 18L, 12L, 18L, 24L, 12L, 22L,
14L, 17L, 18L, 14L, 6L, 12L, 20L, 14L, 18L, 22L, 17L, 22L, 20L,
12L, 18L, 20L, 12L, 22L, 12L, 14L, 22L, 24L, 16L, 20L, 17L, 17L,
18L, 6L, 24L, 20L, 3L, 4L, 11L, 1L, 13L, 2L, 5L, 13L, 5L, 3L,
3L, 5L, 2L, 15L, 2L, 5L, 8L, 1L, 13L, 1L, 1L, 11L, 9L, 4L, 5L,
2L, 4L, 1L, 3L, 5L, 4L, 3L, 1L, 4L, 4L, 2L, 4L, 11L, 13L, 2L,
11L, 9L, 8L, 5L, 8L, 3L, 9L, 13L, 14L, 18L, 6L, 17L, 21L, 22L,
14L, 6L, 14L, 6L, 18L, 12L, 20L, 18L, 14L, 17L, 12L, 12L, 24L,
24L, 12L, 17L, 12L, 12L, 19L, 12L, 24L, 12L, 21L, 22L, 6L, 20L,
14L, 17L, 12L, 19L, 17L, 24L, 16L, 22L, 14L, 6L, 22L, 23L, 17L,
6L, 3L, 3L, 5L, 13L, 8L, 2L, 11L, 4L, 5L, 9L, 7L, 11L, 8L, 5L,
8L, 8L, 1L, 8L, 8L, 11L, 9L, 7L, 5L, 2L, 1L, 2L, 5L, 11L, 8L,
13L, 11L, 5L, 1L, 4L, 11L, 8L, 5L, 8L, 4L, 4L, 11L, 9L, 13L,
3L, 8L, 4L, 11L, 1L, 2L, 3L, 8L, 8L, 1L, 9L, 11L, 8L, 7L, 6L,
12L, 21L, 24L, 12L, 24L, 14L, 12L, 12L, 12L, 22L, 18L, 17L, 22L,
24L, 14L, 17L, 24L, 14L, 6L, 19L, 23L, 22L, 14L, 17L, 12L, 21L,
14L, 17L, 12L, 18L, 20L, 18L, 12L, 12L, 14L, 12L, 17L, 21L, 6L,
14L, 23L, 12L, 24L, 6L, 12L, 22L, 17L, 6L, 11L, 8L, 1L, 10L,
9L, 5L, 9L, 8L, 3L, 11L, 11L, 11L, 2L, 9L, 4L, 5L, 11L, 8L, 3L,
9L, 7L, 4L, 2L, 4L, 2L, 11L, 8L, 5L, 13L, 5L, 9L, 8L, 1L, 2L,
8L, 1L, 2L, 5L, 11L, 7L, 4L, 8L, 8L, 11L, 4L, 1L, 5L, 13L, 8L,
3L, 13L, 9L, 13L, 11L, 8L, 13L, 1L, 8L, 2L, 2L, 4L, 8L, 2L, 8L,
2L, 3L, 2L, 4L, 5L, 2L, 11L, 7L, 24L, 12L, 14L, 12L, 14L, 20L,
17L, 21L, 12L, 21L, 17L, 12L, 6L, 12L, 22L, 20L, 17L, 21L, 23L,
18L, 12L, 12L, 18L, 22L, 24L, 12L, 17L, 24L, 23L, 14L, 17L, 14L,
18L, 21L, 6L, 12L, 14L, 22L, 12L, 6L, 22L, 24L, 14L, 21L, 12L,
17L, 6L, 14L, 1L, 2L, 3L, 2L, 3L, 9L, 5L, 4L, 11L, 8L, 13L, 5L,
11L, 11L, 5L, 8L, 11L, 4L, 1L, 11L, 8L, 13L, 13L, 9L, 11L, 11L,
9L, 5L, 15L, 9L, 3L, 9L, 13L, 11L, 11L, 9L, 4L, 5L, 13L, 1L,
11L, 5L, 8L, 5L, 10L, 5L, 8L, 7L, 11L, 1L, 8L, 2L, 11L, 3L, 4L,
9L, 5L, 11L, 4L, 11L, 7L, 1L, 2L, 3L, 1L, 15L, 3L, 11L, 4L, 1L,
8L, 2L, 2L, 11L, 4L, 5L, 5L, 13L, 11L, 2L, 2L, 12L, 24L, 24L,
18L, 17L, 14L, 21L, 14L, 21L, 21L, 21L, 21L, 19L, 12L, 24L, 20L,
17L, 14L, 21L, 6L, 18L, 21L, 23L, 18L, 6L, 12L, 14L, 14L, 17L,
17L, 22L, 14L, 24L, 14L, 12L, 14L, 17L, 22L, 20L, 6L, 17L, 23L,
16L, 16L, 14L, 22L, 21L, 24L, 12L, 22L, 24L, 12L, 1L, 2L, 5L,
2L, 3L, 5L, 5L, 4L, 9L, 1L, 2L, 8L, 7L, 9L, 2L, 9L, 8L, 3L, 4L,
9L, 7L, 5L, 8L, 4L, 11L, 10L, 9L, 3L, 11L, 11L, 9L, 1L, 11L,
11L, 13L, 5L, 11L, 13L, 5L, 2L, 2L, 5L, 8L, 5L, 9L, 5L, 11L,
11L, 1L, 13L, 2L, 4L, 8L, 5L, 9L, 7L, 3L, 5L, 11L, 2L, 8L, 2L,
2L, 13L, 4L, 13L, 1L, 2L, 3L, 4L, 9L, 8L, 5L, 13L, 4L, 11L, 7L,
1L, 12L, 23L, 21L, 16L, 12L, 6L, 24L, 21L, 6L, 16L, 17L, 12L,
6L, 24L, 20L, 12L, 14L, 6L, 21L, 14L, 20L, 12L, 17L, 12L, 24L,
22L, 17L, 12L, 22L, 16L, 22L, 18L, 12L, 12L, 14L, 6L, 12L, 14L,
14L, 14L, 12L, 12L, 12L, 24L, 23L, 22L, 12L, 14L, 23L, 14L, 6L,
6L, 21L, 17L, 22L, 19L, 2L, 3L, 11L, 11L, 9L, 4L, 8L, 2L, 9L,
11L, 9L, 8L, 9L, 13L, 4L, 3L, 4L, 3L, 1L, 2L, 2L, 5L, 11L, 2L,
3L, 10L, 4L, 1L, 4L, 11L, 2L, 2L, 5L, 11L, 13L, 4L, 5L, 8L, 11L,
8L, 10L, 9L, 2L, 1L, 2L, 1L, 10L, 1L, 13L, 4L, 9L, 7L, 3L, 11L,
7L, 12L, 14L, 17L, 12L, 24L, 14L, 12L, 22L, 14L, 23L, 16L, 24L,
17L, 12L, 14L, 14L, 22L, 16L, 22L, 20L, 14L, 22L, 12L, 6L, 14L,
17L, 12L, 17L, 18L, 12L, 12L, 22L, 22L, 19L, 5L, 9L, 11L, 9L,
8L, 5L, 8L, 1L, 5L, 2L, 2L, 15L, 7L, 2L, 5L, 9L, 4L, 3L, 4L,
4L, 3L, 1L, 4L, 5L, 11L, 13L, 1L, 1L, 4L, 5L, 2L, 4L, 1L, 11L,
11L, 7L, 1L, 5L, 9L, 1L, 5L, 8L, 13L, 2L, 1L, 3L, 3L, 1L, 4L,
5L, 9L, 9L, 4L, 11L, 9L, 3L, 11L, 13L, 12L, 24L, 24L, 24L, 17L,
12L, 24L, 20L, 14L, 12L, 21L, 12L, 18L, 12L, 14L, 12L, 21L, 18L,
18L, 17L, 17L, 18L, 12L, 6L, 18L, 12L, 22L, 12L, 20L, 21L, 14L,
14L, 17L, 6L, 14L, 6L, 14L, 6L, 23L, 20L, 12L, 22L, 20L, 24L,
22L, 16L, 6L, 12L, 23L, 19L, 22L, 2L, 3L, 11L, 11L, 8L, 13L,
7L, 2L, 5L, 2L, 9L, 3L, 1L, 4L, 5L, 9L, 8L, 4L, 15L, 4L, 13L,
1L, 1L, 3L, 11L, 2L, 2L, 1L, 1L, 11L, 8L, 5L, 3L, 1L, 5L, 8L,
4L, 13L, 4L, 5L, 9L, 9L, 9L, 3L, 11L, 2L, 11L, 7L, 11L, 13L,
15L, 15L, 24L, 14L, 18L, 24L, 19L, 24L, 12L, 12L, 14L, 18L, 23L,
17L, 19L, 12L, 17L, 14L, 24L, 20L, 14L, 24L, 14L, 6L, 12L, 20L,
21L, 23L, 23L, 14L, 19L, 12L, 18L, 12L, 14L, 18L, 24L, 23L, 12L,
20L, 17L, 22L, 2L, 11L, 3L, 3L, 4L, 8L, 3L, 1L, 3L, 9L, 9L, 2L,
4L, 5L, 5L, 7L, 2L, 3L, 9L, 11L, 5L, 7L, 15L, 1L, 2L, 11L, 1L,
2L, 4L, 13L, 5L, 3L, 10L, 1L, 13L, 7L, 9L, 13L, 2L, 3L, 13L,
3L, 13L, 5L, 2L, 8L, 4L, 9L, 13L, 22L, 22L, 14L, 6L, 17L, 24L,
20L, 16L, 12L, 23L, 12L, 12L, 12L, 19L, 17L, 20L, 12L, 14L, 12L,
14L, 24L, 14L, 6L, 24L, 12L, 22L, 17L, 21L, 6L, 20L, 14L, 19L,
12L, 19L, 16L, 17L, 24L, 20L, 14L, 14L, 6L, 17L, 24L, 12L, 21L,
22L, 19L, 12L, 24L, 22L, 2L, 10L, 9L, 5L, 11L, 8L, 11L, 13L,
1L, 4L, 8L, 2L, 4L, 11L, 7L, 5L, 10L, 10L, 9L, 5L, 11L, 13L,
1L, 13L, 1L, 2L, 11L, 8L, 3L, 4L, 9L, 13L, 4L, 1L, 13L, 7L, 4L,
11L, 2L, 7L, 3L, 5L, 11L, 3L, 3L, 9L, 5L, 9L, 15L, 8L, 1L, 16L,
17L, 12L, 14L, 12L, 14L, 20L, 12L, 14L, 12L, 6L, 18L, 14L, 18L,
24L, 12L, 20L, 18L, 14L, 14L, 22L, 18L, 24L, 14L, 17L, 14L, 17L,
6L, 24L, 16L, 20L, 2L, 3L, 9L, 5L, 11L, 8L, 13L, 4L, 3L, 4L,
4L, 8L, 2L, 3L, 8L, 1L, 2L, 15L, 5L, 2L, 5L, 4L, 9L, 1L, 5L,
11L, 9L, 13L, 11L, 13L, 1L, 5L, 11L, 13L, 4L, 14L, 14L, 17L,
6L, 16L, 24L, 22L, 18L, 21L, 24L, 20L, 14L, 14L, 12L, 14L, 12L,
17L, 12L, 6L, 18L, 6L, 20L, 20L, 14L, 24L, 12L, 23L, 24L, 14L,
6L, 22L, 17L, 2L, 5L, 3L, 11L, 4L, 5L, 3L, 7L, 3L, 15L, 11L,
8L, 13L, 5L, 1L, 2L, 11L, 3L, 1L, 2L, 3L, 4L, 3L, 5L, 1L, 4L,
9L, 8L, 15L, 1L, 9L, 11L, 8L, 1L, 2L, 5L, 2L, 9L, 3L, 11L, 4L,
11L, 13L, 2L, 22L, 23L, 22L, 18L, 20L, 18L, 24L, 14L, 21L, 14L,
14L, 18L, 17L, 19L, 6L, 17L, 17L, 12L, 18L, 14L, 20L, 22L, 12L,
20L, 12L, 22L, 17L, 24L, 22L, 17L, 24L, 2L, 8L, 11L, 2L, 5L,
1L, 5L, 11L, 13L, 9L, 1L, 11L, 8L, 5L, 11L, 8L, 4L, 8L, 13L,
11L, 8L, 4L, 11L, 11L, 5L, 9L, 1L, 9L, 2L, 3L, 13L, 1L, 13L,
2L, 8L, 9L, 8L, 4L, 3L, 11L, 20L, 18L, 14L, 17L, 18L, 21L, 18L,
20L, 24L, 12L, 24L, 14L, 12L, 21L, 14L, 6L, 24L, 18L, 6L, 20L,
14L, 17L, 12L, 22L, 12L, 20L, 14L, 18L, 6L, 18L, 6L, 17L, 14L,
12L, 18L, 24L, 23L, 6L, 14L, 17L, 20L, 6L, 22L, 16L, 22L, 12L,
2L, 13L, 9L, 2L, 8L, 13L, 4L, 13L, 8L, 2L, 11L, 4L, 8L, 4L, 9L,
4L, 3L, 15L, 1L, 1L, 5L, 1L, 5L, 13L, 3L, 9L, 1L, 11L, 11L, 2L,
1L, 11L, 1L, 2L, 5L, 5L, 8L, 9L, 11L, 11L, 2L, 8L, 1L, 10L, 1L,
2L, 13L, 9L, 5L, 1L, 2L, 13L, 2L, 11L, 1L, 2L, 11L, 9L, 4L, 9L,
17L, 24L, 20L, 14L, 24L, 6L, 21L, 6L, 21L, 14L, 12L, 20L, 14L,
20L, 20L, 17L, 24L, 21L, 14L, 12L, 20L, 12L, 12L, 19L, 22L, 6L,
14L, 17L, 24L, 12L, 14L, 18L, 6L, 12L, 12L, 6L, 20L, 18L, 23L,
17L, 6L, 22L, 17L, 17L, 22L, 2L, 3L, 11L, 3L, 3L, 7L, 2L, 5L,
9L, 8L, 9L, 11L, 13L, 9L, 8L, 1L, 4L, 5L, 4L, 9L, 2L, 2L, 1L,
5L, 9L, 2L, 1L, 4L, 11L, 2L, 11L, 5L, 1L, 2L, 5L, 9L, 7L, 9L,
15L, 9L, 1L, 11L, 15L, 13L, 2L, 3L, 11L, 7L, 13L, 1L, 3L, 4L,
16L, 24L, 21L, 20L, 14L, 18L, 24L, 14L, 16L, 14L, 24L, 6L, 12L,
18L, 12L, 6L, 12L, 18L, 24L, 18L, 21L, 12L, 20L, 24L, 17L, 17L,
24L, 22L, 21L, 20L, 14L, 6L, 12L, 19L, 12L, 20L, 6L, 22L, 20L,
14L, 19L, 14L, 14L, 24L, 6L, 17L, 14L, 19L, 16L, 19L, 16L, 20L,
12L, 17L, 23L, 14L, 17L, 6L, 24L, 22L, 19L, 23L, 20L, 2L, 4L,
5L, 9L, 7L, 9L, 8L, 4L, 13L, 5L, 4L, 5L, 3L, 11L, 2L, 9L, 2L,
5L, 5L, 8L, 13L, 5L, 9L, 15L, 7L, 3L, 9L, 10L, 4L, 5L, 3L, 9L,
1L, 11L, 1L, 11L, 9L, 2L, 1L, 1L, 15L, 1L, 2L, 11L, 8L, 1L, 4L,
11L, 9L, 2L, 5L, 11L, 9L, 15L, 11L, 13L, 5L, 9L, 11L, 2L, 5L,
9L, 9L, 1L, 3L, 4L, 7L, 1L, 3L, 8L, 7L, 2L, 3L, 11L, 8L, 3L,
6L, 20L, 6L, 16L, 16L, 12L, 20L, 14L, 18L, 24L, 6L, 12L, 23L,
20L, 6L, 23L, 19L, 12L, 21L, 14L, 19L, 12L, 21L, 17L, 21L, 14L,
18L, 20L, 12L, 6L, 24L, 12L, 12L, 20L, 17L, 12L, 6L, 21L, 14L,
22L, 12L, 12L, 20L, 23L, 19L, 24L, 16L, 19L, 24L, 6L, 23L, 24L,
18L, 23L, 16L, 16L, 24L, 23L, 12L, 17L, 6L, 18L, 20L, 6L, 24L,
20L, 23L, 2L, 3L, 9L, 7L, 9L, 2L, 4L, 11L, 8L, 1L, 4L, 9L, 7L,
9L, 15L, 2L, 3L, 2L, 3L, 9L, 9L, 8L, 7L, 4L, 5L, 13L, 5L, 11L,
2L, 2L, 4L, 3L, 4L, 11L, 9L, 5L, 9L, 4L, 3L, 9L, 7L, 1L, 2L,
1L, 5L, 3L, 15L, 1L, 2L, 10L, 1L, 4L, 5L, 8L, 2L, 2L, 1L, 1L,
15L, 7L, 3L, 7L, 2L, 5L, 13L, 9L, 2L, 2L, 5L, 9L, 10L, 4L, 2L,
10L, 4L, 8L, 11L, 16L, 21L, 19L, 6L, 12L, 17L, 20L, 23L, 12L,
23L, 18L, 6L, 14L, 6L, 17L, 20L, 20L, 22L, 14L, 24L, 12L, 14L,
16L, 6L, 19L, 18L, 6L, 20L, 14L, 19L, 6L, 12L, 23L, 20L, 17L,
20L, 6L, 14L, 18L, 16L, 23L, 19L, 6L, 12L, 18L, 20L, 16L, 23L,
16L, 18L, 21L, 16L, 17L, 19L, 6L, 14L, 22L, 12L, 21L, 16L, 20L,
17L, 2L, 1L, 2L, 4L, 7L, 13L, 10L, 9L, 2L, 13L, 2L, 3L, 4L, 11L,
9L, 3L, 9L, 4L, 9L, 4L, 9L, 4L, 2L, 9L, 4L, 8L, 5L, 11L, 9L,
15L, 8L, 4L, 13L, 1L, 11L, 2L, 8L, 5L, 11L, 1L, 2L, 5L, 11L,
1L, 4L, 8L, 8L, 1L, 10L, 8L, 9L, 13L, 2L, 15L, 9L, 7L, 1L, 1L,
2L, 4L, 10L, 13L, 11L, 2L, 5L, 2L, 9L, 2L, 7L, 8L, 7L, 11L, 6L,
21L, 20L, 16L, 21L, 18L, 24L, 14L, 18L, 6L, 12L, 12L, 21L, 12L,
12L, 17L, 14L, 19L, 14L, 24L, 17L, 19L, 12L, 16L, 19L, 20L, 17L,
6L, 12L, 14L, 18L, 16L, 6L, 14L, 17L, 12L, 18L, 12L, 22L, 16L,
12L, 24L, 17L, 24L, 6L, 21L, 20L, 16L, 19L, 6L, 16L, 14L, 22L,
6L, 12L, 20L, 17L, 6L, 1L, 2L, 3L, 4L, 10L, 2L, 3L, 2L, 4L, 11L,
9L, 7L, 9L, 5L, 8L, 13L, 5L, 2L, 9L, 1L, 9L, 1L, 3L, 5L, 4L,
4L, 8L, 1L, 4L, 3L, 9L, 2L, 1L, 8L, 9L, 8L, 2L, 2L, 11L, 1L,
3L, 9L, 1L, 3L, 11L, 3L, 3L, 9L, 8L, 13L, 9L, 8L, 5L, 7L, 4L,
9L, 4L, 11L, 2L, 11L, 2L, 11L, 1L, 9L, 18L, 20L, 2L, 3L, 14L,
16L, 3L, 15L, 12L, 23L, 18L, 22L, 11L, 9L, 1L, 3L, 10L, 13L,
17L, 6L, 2L, 15L, 12L, 9L, 7L, 17L, 24L, 2L, 15L, 7L, 1L, 11L,
15L, 18L, 24L, 3L, 4L, 9L, 13L, 8L, 15L, 12L, 2L, 14L, 16L, 22L,
23L, 2L, 19L, 12L, 20L, 2L, 2L, 5L, 8L, 14L, 1L, 4L, 11L, 24L,
23L, 4L, 9L, 17L, 23L, 9L, 6L, 1L, 9L, 19L, 15L, 1L, 20L, 4L,
13L, 4L, 9L, 15L, 12L, 22L, 20L, 8L, 13L, 18L, 23L, 20L, 1L,
2L, 11L, 9L, 15L, 21L, 5L, 15L, 17L, 15L, 7L, 18L, 12L, 19L,
1L, 3L, 9L, 20L, 11L, 8L, 13L, 17L, 24L, 6L, 20L, 14L, 24L, 10L,
20L, 2L, 13L, 24L, 17L, 6L, 12L, 16L, 19L, 11L, 19L, 12L, 4L,
8L, 16L, 24L, 23L, 22L, 2L, 4L, 9L, 7L, 23L, 22L, 20L, 1L, 1L,
22L, 22L, 20L, 1L, 7L, 6L, 22L, 20L, 16L, 17L, 18L, 14L, 16L,
6L, 19L, 6L, 17L, 12L, 21L, 14L, 6L, 12L, 18L, 18L, 24L, 20L,
18L, 14L, 18L, 23L, 21L, 14L, 6L, 19L, 24L, 12L, 6L, 24L, 6L,
21L, 18L, 22L, 21L, 20L, 22L, 14L, 20L, 17L, 18L, 19L, 24L, 18L,
21L, 17L, 12L, 23L, 20L, 20L, 17L, 12L, 22L, 20L, 14L, 14L, 12L,
23L, 20L, 17L, 24L, 16L, 24L, 21L, 17L, 19L, 12L, 23L, 22L, 14L,
23L, 2L, 5L, 9L, 3L, 4L, 15L, 2L, 9L, 5L, 2L, 8L, 9L, 2L, 8L,
3L, 11L, 1L, 10L, 3L, 4L, 8L, 2L, 8L, 9L, 3L, 4L, 13L, 13L, 4L,
7L, 1L, 3L, 1L, 5L, 13L, 5L, 15L, 2L, 4L, 7L, 5L, 8L, 1L, 9L,
1L, 8L, 11L, 2L, 9L, 1L, 2L, 4L, 4L, 11L, 9L, 13L, 9L, 1L, 2L,
11L, 4L, 5L, 9L, 1L, 5L, 2L, 3L, 4L, 13L, 7L, 13L, 1L, 8L, 9L,
8L, 13L, 16L, 21L, 19L, 17L, 6L, 23L, 20L, 21L, 18L, 14L, 24L,
21L, 19L, 14L, 20L, 23L, 21L, 6L, 12L, 21L, 21L, 19L, 18L, 24L,
22L, 24L, 23L, 17L, 20L, 19L, 12L, 14L, 12L, 14L, 17L, 20L, 22L,
18L, 14L, 18L, 6L, 22L, 6L, 22L, 12L, 18L, 17L, 20L, 24L, 12L,
6L, 20L, 14L, 12L, 23L, 17L, 21L, 17L, 22L, 24L, 18L, 23L, 14L,
19L, 19L, 12L, 24L, 2L, 4L, 8L, 1L, 9L, 8L, 9L, 11L, 7L, 2L,
15L, 2L, 3L, 4L, 11L, 13L, 8L, 4L, 13L, 5L, 2L, 3L, 10L, 4L,
9L, 11L, 13L, 1L, 5L, 9L, 9L, 8L, 8L, 3L, 4L, 11L, 9L, 7L, 4L,
2L, 4L, 15L, 2L, 3L, 1L, 2L, 13L, 13L, 10L, 4L, 13L, 10L, 11L,
9L, 9L, 15L, 9L, 8L, 1L, 3L, 2L, 5L, 1L, 2L, 8L, 13L, 10L, 2L,
8L, 3L, 4L, 1L, 4L, 7L, 1L, 3L, 3L, 4L, 9L, 7L, 5L, 13L, 3L,
5L, 11L, 1L, 1L, 8L, 21L, 20L, 12L, 6L, 12L, 18L, 24L, 14L, 17L,
16L, 22L, 22L, 18L, 12L, 16L, 14L, 24L, 18L, 14L, 23L, 16L, 20L,
22L, 24L, 24L, 12L, 23L, 24L, 18L, 18L, 18L, 20L, 20L, 22L, 17L,
22L, 6L, 18L, 21L, 14L, 17L, 22L, 19L, 17L, 14L, 18L, 20L, 6L,
12L, 18L, 17L, 14L, 24L, 21L, 6L, 16L, 20L, 12L, 19L, 17L, 20L,
12L, 1L, 3L, 13L, 5L, 9L, 8L, 15L, 13L, 15L, 4L, 9L, 5L, 13L,
2L, 4L, 13L, 9L, 15L, 3L, 15L, 5L, 2L, 11L, 15L, 7L, 1L, 3L,
4L, 8L, 9L, 1L, 11L, 8L, 15L, 4L, 13L, 10L, 2L, 1L, 8L, 4L, 1L,
4L, 5L, 8L, 15L, 13L, 1L, 1L, 11L, 10L, 1L, 3L, 7L, 13L, 2L,
15L, 7L, 9L, 8L, 13L, 2L, 3L, 11L, 4L, 10L, 5L, 7L, 1L, 2L, 2L,
4L, 9L, 13L, 13L, 2L, 3L, 4L, 1L, 11L, 15L, 3L, 4L, 13L, 7L,
14L, 12L, 12L, 20L, 24L, 14L, 12L, 18L, 13L, 19L, 6L, 19L, 24L,
18L, 23L, 13L, 18L, 18L, 20L, 6L, 13L, 17L, 22L, 24L, 13L, 20L,
12L, 14L, 13L, 24L, 12L, 22L, 18L, 14L, 14L, 17L, 12L, 17L, 20L,
24L, 6L, 13L, 20L, 22L, 13L, 20L, 19L, 17L, 14L, 6L, 18L, 13L,
20L, 6L, 13L, 24L, 12L, 14L, 24L, 12L, 20L, 22L, 24L, 12L, 19L,
22L, 19L, 17L, 20L, 24L, 6L, 1L, 3L, 4L, 3L, 11L, 2L, 3L, 8L,
5L, 15L, 8L, 7L, 1L, 16L, 3L, 4L, 2L, 4L, 9L, 2L, 3L, 8L, 1L,
15L, 8L, 15L, 1L, 15L, 15L, 1L, 9L, 3L, 16L, 11L, 8L, 7L, 1L,
5L, 1L, 2L, 11L, 9L, 5L, 5L, 7L, 10L, 2L, 8L, 2L, 8L, 5L, 1L,
9L, 8L, 2L, 4L, 9L, 2L, 2L, 8L, 4L, 7L, 1L, 2L, 11L, 7L, 2L,
3L, 20L, 18L, 24L, 24L, 23L, 17L, 12L, 24L, 20L, 22L, 24L, 14L,
18L, 22L, 24L, 14L, 18L, 22L, 23L, 6L, 12L, 14L, 24L, 20L, 14L,
20L, 12L, 18L, 22L, 14L, 16L, 12L, 24L, 24L, 6L, 20L, 22L, 23L,
6L, 23L, 18L, 20L, 18L, 14L, 20L, 18L, 6L, 16L, 20L, 12L, 6L,
22L, 6L, 18L, 19L, 17L, 24L, 22L, 19L, 23L, 16L, 12L, 22L, 16L,
23L, 12L, 17L, 18L, 24L, 18L, 22L, 17L, 12L, 17L, 17L, 6L, 4L,
8L, 7L, 3L, 13L, 7L, 1L, 3L, 13L, 11L, 9L, 1L, 2L, 3L, 1L, 9L,
7L, 10L, 3L, 7L, 9L, 4L, 15L, 2L, 1L, 2L, 9L, 9L, 3L, 1L, 5L,
11L, 1L, 4L, 9L, 8L, 9L, 4L, 11L, 1L, 3L, 13L, 2L, 5L, 1L, 9L,
2L, 4L, 11L, 13L, 2L, 10L, 2L, 3L, 5L, 13L, 5L, 8L, 2L, 7L, 9L,
13L, 15L, 13L, 2L, 11L, 15L, 13L, 8L, 7L, 2L, 4L, 7L, 1L, 3L,
4L, 5L, 2L, 8L, 6L, 17L, 21L, 12L, 6L, 16L, 20L, 23L, 14L, 19L,
23L, 20L, 24L, 24L, 6L, 16L, 21L, 18L, 22L, 18L, 14L, 18L, 24L,
24L, 12L, 24L, 14L, 12L, 17L, 14L, 20L, 17L, 23L, 14L, 19L, 20L,
22L, 21L, 19L, 6L, 22L, 6L, 20L, 22L, 12L, 14L, 12L, 17L, 24L,
18L, 19L, 24L, 21L, 6L, 18L, 20L, 12L, 6L, 18L, 14L, 19L, 6L,
21L, 12L, 21L, 19L, 17L, 6L, 18L, 12L, 17L, 22L, 24L, 6L, 18L,
20L, 17L, 19L, 17L, 14L, 22L, 19L, 12L, 18L, 17L, 3L, 5L, 11L,
1L, 3L, 4L, 9L, 8L, 4L, 9L, 15L, 1L, 5L, 13L, 2L, 5L, 9L, 3L,
1L, 3L, 13L, 9L, 15L, 2L, 7L, 10L, 1L, 3L, 8L, 13L, 7L, 3L, 8L,
1L, 2L, 3L, 10L, 3L, 9L, 5L, 11L, 10L, 1L, 11L, 9L, 2L, 11L,
7L, 10L, 9L, 13L, 8L, 2L, 11L, 8L, 2L, 5L, 11L, 4L, 11L, 5L,
13L, 7L, 2L, 11L, 4L, 5L, 8L, 7L, 1L, 11L, 1L, 3L, 4L, 2L, 10L,
1L, 7L, 1L, 15L, 13L, 3L, 4L, 15L, 2L, 15L, 2L, 11L, 4L, 11L,
10L, 9L, 1L, 2L, 4L, 3L, 4L, 5L, 11L, 1L, 8L, 13L, 22L, 19L,
12L, 20L, 20L, 22L, 18L, 12L, 18L, 24L, 6L, 16L, 20L, 12L, 21L,
24L, 21L, 12L, 20L, 6L, 21L, 12L, 24L, 18L, 21L, 12L, 14L, 14L,
6L, 17L, 22L, 6L, 18L, 12L, 24L, 22L, 19L, 16L, 16L, 6L, 18L,
19L, 20L, 22L, 17L, 21L, 21L, 16L, 6L, 18L, 23L, 18L, 19L, 6L,
17L, 17L, 17L, 22L, 22L, 19L, 20L, 17L, 21L, 19L, 6L, 17L, 23L,
19L, 6L, 12L, 17L, 24L, 18L, 2L, 3L, 7L, 2L, 9L, 2L, 7L, 10L,
9L, 5L, 2L, 3L, 11L, 5L, 1L, 8L, 3L, 2L, 9L, 8L, 5L, 11L, 3L,
10L, 7L, 4L, 15L, 4L, 3L, 11L, 1L, 11L, 15L, 1L, 11L, 5L, 11L,
4L, 8L, 1L, 1L, 9L, 2L, 5L, 2L, 2L, 7L, 11L, 8L, 5L, 2L, 3L,
9L, 8L, 13L, 8L, 13L, 3L, 2L, 9L, 5L, 4L, 10L, 5L, 2L, 13L, 2L,
4L, 11L, 13L, 5L, 4L, 2L, 3L, 7L, 5L, 4L, 2L, 11L, 10L, 2L, 11L,
15L, 10L, 10L, 21L, 21L, 22L, 20L, 17L, 16L, 20L, 12L, 18L, 6L,
22L, 12L, 21L, 24L, 16L, 6L, 12L, 12L, 24L, 12L, 23L, 19L, 6L,
12L, 21L, 6L, 12L, 20L, 19L, 23L, 6L, 24L, 12L, 1L, 12L, 18L,
20L, 20L, 22L, 1L, 16L, 20L, 22L, 19L, 12L, 1L, 22L, 6L, 19L,
6L, 17L, 1L, 17L, 1L, 1L, 23L, 1L, 16L, 19L, 19L, 6L, 12L, 17L,
16L, 24L, 6L, 17L, 17L, 17L, 24L, 19L, 6L, 13L, 3L, 2L, 8L, 9L,
2L, 7L, 3L, 2L, 7L, 8L, 9L, 11L, 4L, 7L, 15L, 9L, 9L, 11L, 9L,
5L, 11L, 2L, 7L, 8L, 2L, 3L, 15L, 8L, 4L, 11L, 3L, 9L, 4L, 13L,
10L, 2L, 13L, 8L, 9L, 4L, 9L, 3L, 3L, 5L, 9L, 5L, 8L, 10L, 11L,
13L, 10L, 3L, 3L, 5L, 11L, 4L, 2L, 8L, 7L, 2L, 9L, 10L, 2L, 9L,
5L, 15L, 8L, 7L, 5L, 11L, 3L, 14L, 11L, 4L, 3L, 15L, 9L, 10L,
11L, 5L, 13L, 2L, 11L, 15L, 4L, 11L, 8L, 3L, 2L, 12L, 22L, 19L,
12L, 12L, 18L, 12L, 22L, 12L, 17L, 24L, 14L, 20L, 22L, 12L, 21L,
12L, 23L, 24L, 22L, 20L, 1L, 14L, 21L, 12L, 12L, 1L, 21L, 22L,
12L, 22L, 6L, 1L, 14L, 22L, 6L, 17L, 22L, 6L, 17L, 12L, 17L,
23L, 22L, 6L, 24L, 14L, 22L, 14L, 17L, 24L, 22L, 24L, 6L, 23L,
1L, 19L, 17L, 23L, 22L, 19L, 2L, 4L, 9L, 16L, 7L, 3L, 3L, 4L,
16L, 3L, 9L, 3L, 10L, 11L, 8L, 5L, 7L, 4L, 11L, 3L, 2L, 3L, 4L,
11L, 13L, 3L, 4L, 3L, 15L, 2L, 4L, 11L, 9L, 8L, 16L, 2L, 4L,
16L, 7L, 10L, 3L, 2L, 11L, 8L, 4L, 5L, 10L, 5L, 7L, 2L, 11L,
4L, 15L, 13L, 7L, 15L, 5L, 10L, 16L, 10L, 11L, 5L, 2L, 10L, 11L,
8L, 3L, 5L, 4L, 11L, 15L, 9L, 13L, 11L, 9L, 10L, 2L, 4L, 15L,
5L, 10L, 3L, 8L, 21L, 22L, 24L, 23L, 19L, 24L, 20L, 22L, 24L,
23L, 22L, 23L, 20L, 22L, 22L, 24L, 23L, 23L, 23L, 22L, 22L, 19L,
19L, 24L, 13L, 16L, 8L, 7L, 15L, 15L, 17L, 10L, 13L, 8L, 14L,
8L, 7L, 17L, 18L, 8L, 10L, 14L, 17L, 7L, 8L, 7L, 9L, 8L, 17L,
8L, 9L, 17L, 17L, 17L, 8L, 14L, 18L, 10L, 18L, 7L, 1L, 3L, 12L,
4L, 2L, 3L, 12L, 3L, 3L, 4L, 1L, 2L, 11L, 12L, 11L, 3L, 11L,
4L, 2L, 12L, 1L, 4L, 4L, 2L, 6L, 2L, 11L, 12L, 2L, 4L, 1L, 12L,
4L, 1L, 3L, 11L, 2L, 5L, 12L, 11L, 3L, 6L, 3L, 11L, 3L, 6L, 20L,
12L, 20L, 12L, 1L, 21L, 6L, 18L, 12L, 12L, 1L, 12L, 22L, 1L,
1L, 17L, 17L, 22L, 12L, 19L, 20L, 1L, 1L, 19L, 17L, 6L, 20L,
17L, 17L, 6L, 4L, 11L, 3L, 8L, 3L, 2L, 4L, 15L, 4L, 9L, 9L, 11L,
15L, 9L, 11L, 11L, 8L, 8L, 11L, 8L, 5L, 14L, 3L, 4L, 8L, 3L,
15L, 2L, 11L, 2L, 2L, 8L, 8L, 9L, 8L, 2L, 9L, 7L, 8L, 14L, 3L,
4L, 2L, 13L, 11L, 4L, 7L, 15L, 9L, 8L, 14L, 5L, 13L, 7L, 2L,
6L, 12L, 1L, 19L, 23L, 17L, 24L, 18L, 20L, 16L, 21L, 23L, 1L,
19L, 24L, 1L, 12L, 12L, 17L, 20L, 12L, 22L, 12L, 18L, 22L, 16L,
20L, 21L, 20L, 23L, 17L, 22L, 16L, 6L, 1L, 1L, 20L, 12L, 22L,
19L, 24L, 6L, 12L, 21L, 6L, 22L, 14L, 9L, 3L, 4L, 2L, 11L, 11L,
8L, 3L, 4L, 4L, 5L, 8L, 3L, 11L, 2L, 3L, 4L, 14L, 4L, 3L, 5L,
3L, 8L, 3L, 11L, 8L, 8L, 14L, 7L, 5L, 11L, 9L, 11L, 14L, 2L,
14L, 9L, 7L, 5L, 5L, 2L, 8L, 14L, 13L, 8L, 8L, 2L, 9L, 4L, 9L,
15L, 13L, 8L, 4L, 11L, 9L, 2L, 11L, 5L, 8L, 3L, 11L, 22L, 24L,
23L, 24L, 18L, 17L, 24L, 12L, 12L, 12L, 12L, 24L, 17L, 24L, 6L,
19L, 23L, 1L, 12L, 20L, 21L, 17L, 20L, 1L, 24L, 6L, 22L, 18L,
17L, 1L, 23L, 23L, 20L, 12L, 23L, 1L, 6L, 19L, 17L, 23L, 17L,
14L, 11L, 2L, 15L, 7L, 11L, 15L, 15L, 9L, 4L, 4L, 8L, 4L, 9L,
8L, 9L, 9L, 8L, 2L, 14L, 11L, 3L, 5L, 11L, 9L, 14L, 4L, 11L,
8L, 9L, 13L, 4L, 13L, 14L, 8L, 4L, 11L, 3L, 11L, 9L, 8L, 2L,
5L, 8L, 2L, 2L, 12L, 17L, 22L, 20L, 12L, 24L, 23L, 12L, 20L,
6L, 17L, 20L, 16L, 6L, 12L, 12L, 17L, 19L, 20L, 20L, 12L, 12L,
20L, 1L, 1L, 19L, 22L, 1L, 6L, 12L, 22L, 6L, 21L, 20L, 19L, 17L,
17L, 1L, 23L, 17L, 17L, 6L, 16L, 6L, 18L, 2L, 6L, 19L, 9L, 7L,
3L, 11L, 2L, 15L, 2L, 2L, 14L, 13L, 4L, 14L, 10L, 2L, 2L, 13L,
9L, 15L, 3L, 5L, 11L, 8L, 4L, 14L, 5L, 10L, 11L, 13L, 4L, 13L,
2L, 3L, 2L, 13L, 3L, 9L, 8L, 3L, 13L, 8L, 9L, 8L, 4L, 8L, 11L,
2L, 14L, 5L, 3L, 14L, 13L, 2L, 4L, 9L, 8L, 8L, 5L, 9L, 10L, 3L,
11L, 18L, 6L, 1L, 24L, 20L, 18L, 20L, 6L, 1L, 23L, 24L, 6L, 23L,
1L, 6L, 23L, 22L, 1L, 6L, 12L, 6L, 12L, 23L, 18L, 22L, 24L, 17L,
1L, 17L, 17L, 8L, 14L, 3L, 2L, 3L, 13L, 3L, 4L, 11L, 2L, 3L,
5L, 8L, 11L, 2L, 4L, 2L, 5L, 9L, 2L, 11L, 8L, 5L, 15L, 9L, 13L,
4L, 5L, 15L, 13L, 9L, 8L, 14L, 4L, 9L, 5L, 9L, 15L, 11L, 14L,
13L, 13L, 8L, 3L, 4L, 11L, 3L, 14L, 7L, 12L, 24L, 19L, 22L, 1L,
24L, 12L, 16L, 6L, 12L, 16L, 21L, 1L, 17L, 21L, 21L, 6L, 22L,
1L, 22L, 12L, 20L, 20L, 17L, 20L, 1L, 23L, 23L, 12L, 12L, 17L,
6L, 6L, 18L, 18L, 6L, 22L, 18L, 21L, 5L, 4L, 13L, 4L, 13L, 7L,
3L, 9L, 2L, 9L, 4L, 13L, 2L, 14L, 2L, 8L, 10L, 14L, 8L, 5L, 11L,
11L, 8L, 7L, 9L, 14L, 11L, 15L, 8L, 7L, 5L, 14L, 14L, 11L, 5L,
3L, 8L, 4L, 3L, 8L, 13L, 9L, 8L, 13L, 9L, 7L, 11L, 9L, 8L, 3L,
13L, 11L, 10L, 6L, 1L, 16L, 19L, 16L, 20L, 21L, 24L, 20L, 16L,
21L, 1L, 12L, 12L, 17L, 24L, 18L, 18L, 24L, 23L, 19L, 21L, 22L,
19L, 23L, 24L, 23L, 18L, 12L, 16L, 16L, 22L, 21L, 1L, 20L, 18L,
20L, 1L, 6L, 23L, 1L, 16L, 6L, 12L, 17L, 17L, 20L, 17L, 6L, 17L,
1L, 6L, 16L, 22L, 1L, 17L, 20L, 17L, 3L, 4L, 8L, 14L, 15L, 3L,
4L, 9L, 14L, 14L, 3L, 2L, 4L, 9L, 14L, 11L, 13L, 9L, 2L, 11L,
4L, 9L, 14L, 4L, 9L, 7L, 2L, 14L, 3L, 8L, 5L, 2L, 14L, 11L, 8L,
7L, 4L, 5L, 5L, 7L, 9L, 7L, 2L, 9L, 2L, 11L, 2L, 7L, 2L, 8L,
3L, 3L, 8L, 7L, 2L, 3L, 8L, 5L, 3L, 7L, 3L, 9L, 8L, 14L, 13L,
7L, 9L, 4L, 15L, 8L, 11L, 7L, 5L, 3L, 11L, 18L, 20L, 1L, 22L,
17L, 12L, 1L, 6L, 24L, 1L, 16L, 21L, 20L, 1L, 12L, 20L, 12L,
21L, 17L, 12L, 23L, 17L, 6L, 24L, 12L, 6L, 22L, 17L, 6L, 24L,
16L, 20L, 6L, 20L, 16L, 19L, 21L, 17L, 24L, 19L, 1L, 16L, 1L,
12L, 23L, 1L, 21L, 1L, 22L, 6L, 1L, 22L, 21L, 1L, 12L, 12L, 14L,
7L, 3L, 9L, 13L, 7L, 11L, 9L, 4L, 13L, 5L, 11L, 9L, 3L, 4L, 9L,
2L, 8L, 3L, 7L, 4L, 11L, 8L, 14L, 13L, 9L, 4L, 11L, 14L, 3L,
7L, 2L, 11L, 10L, 14L, 11L, 5L, 11L, 8L, 7L, 5L, 9L, 13L, 2L,
4L, 8L, 14L, 4L, 10L, 11L, 7L, 2L, 14L, 2L, 9L, 4L, 7L, 5L, 11L,
15L, 3L, 8L, 7L, 4L, 4L, 9L, 10L, 9L, 2L, 5L, 9L, 8L, 15L, 5L,
8L, 2L, 14L, 9L, 5L, 5L, 15L, 11L, 8L, 21L, 18L, 1L, 19L, 22L,
21L, 20L, 21L, 20L, 12L, 23L, 21L, 20L, 24L, 6L, 12L, 16L, 12L,
20L, 24L, 20L, 17L, 6L, 12L, 23L, 24L, 12L, 1L, 19L, 22L, 1L,
1L, 17L, 1L, 22L, 21L, 16L, 20L, 17L, 19L, 12L, 19L, 1L, 24L,
12L, 21L, 12L, 17L, 1L, 12L, 17L, 17L, 1L, 21L, 1L, 22L, 1L,
22L, 6L, 12L, 16L, 22L, 17L, 1L, 6L, 19L, 18L, 3L, 9L, 11L, 10L,
2L, 4L, 15L, 7L, 5L, 10L, 9L, 7L, 5L, 7L, 3L, 7L, 10L, 4L, 9L,
8L, 13L, 10L, 3L, 7L, 11L, 14L, 13L, 3L, 8L, 13L, 4L, 5L, 3L,
11L, 2L, 4L, 14L, 13L, 7L, 3L, 5L, 3L, 8L, 9L, 2L, 8L, 2L, 4L,
7L, 11L, 8L, 14L, 5L, 14L, 3L, 8L, 9L, 8L, 5L, 7L, 2L, 4L, 9L,
4L, 15L, 9L, 14L, 7L, 5L, 13L, 11L, 9L, 13L, 7L, 9L, 11L, 9L,
13L, 3L, 10L, 8L, 11L, 14L, 3L, 9L, 13L, 9L, 8L, 3L, 11L, 9L,
13L, 2L, 5L, 8L, 7L, 17L, 17L, 12L, 23L, 18L, 20L, 1L, 12L, 21L,
6L, 12L, 21L, 18L, 21L, 20L, 16L, 6L, 19L, 12L, 12L, 12L, 6L,
12L, 18L, 20L, 16L, 12L, 18L, 20L, 23L, 20L, 1L, 1L, 1L, 17L,
12L, 23L, 1L, 12L, 12L, 21L, 1L, 19L, 22L, 19L, 19L, 1L, 24L,
6L, 21L, 20L, 21L, 12L, 1L, 12L, 23L, 21L, 17L, 24L, 23L, 12L,
22L, 1L, 17L, 24L, 1L, 22L, 16L, 23L, 12L, 24L, 18L, 17L, 12L,
24L, 21L, 19L, 22L, 17L, 9L, 3L, 4L, 11L, 15L, 14L, 9L, 8L, 10L,
9L, 8L, 11L, 10L, 8L, 14L, 7L, 10L, 13L, 3L, 5L, 9L, 7L, 3L,
9L, 15L, 2L, 5L, 8L, 9L, 7L, 13L, 2L, 8L, 4L, 11L, 8L, 5L, 9L,
14L, 3L, 13L, 11L, 8L, 4L, 5L, 9L, 5L, 13L, 4L, 5L, 7L, 3L, 4L,
11L, 9L, 8L, 15L, 13L, 4L, 13L, 7L, 3L, 11L, 2L, 11L, 11L, 15L,
14L, 11L, 9L, 3L, 4L, 15L, 2L, 4L, 5L, 2L, 4L, 2L, 9L, 8L, 11L,
15L, 5L, 7L, 3L, 11L, 8L, 7L, 9L, 4L, 9L, 15L, 7L, 2L, 3L, 11L,
7L, 3L, 5L, 9L, 8L, 15L, 13L, 15L, 7L, 11L, 11L, 8L, 14L, 1L,
24L, 7L, 24L, 7L, 24L, 12L, 1L, 12L, 19L, 23L, 12L, 24L, 24L,
12L, 23L, 24L, 7L, 19L, 12L, 22L, 1L, 22L, 6L, 7L, 6L, 12L, 7L,
6L, 19L, 6L, 12L, 22L, 23L, 22L, 23L, 22L, 7L, 7L, 6L, 19L, 22L,
7L, 12L, 23L, 6L, 24L, 7L, 22L, 1L, 23L, 11L, 20L, 13L, 20L,
2L, 2L, 21L, 18L, 20L, 5L, 20L, 17L, 5L, 11L, 20L, 18L, 2L, 20L,
21L, 5L, 2L, 13L, 18L, 11L, 5L, 2L, 20L, 17L, 21L, 21L, 5L, 2L,
17L, 5L, 2L, 5L, 13L, 20L, 11L, 17L, 11L, 2L, 17L, 5L, 2L, 13L,
21L, 2L, 5L, 2L, 13L, 17L, 17L, 13L, 2L, 11L, 3L, 9L, 14L, 3L,
8L, 4L, 4L, 16L, 10L, 4L, 9L, 15L, 15L, 15L, 3L, 3L, 14L, 10L,
8L, 16L, 10L, 3L, 3L, 9L, 8L, 14L, 3L, 8L, 4L, 9L, 9L, 4L, 14L,
10L, 3L, 8L, 10L, 3L, 3L, 3L, 9L, 14L, 9L, 8L, 15L, 16L, 3L,
14L, 1L, 9L, 8L, 3L, 6L, 3L, 3L, 9L, 1L, 3L, 12L, 12L, 9L, 5L,
10L, 8L, 1L, 2L, 11L, 10L, 5L, 8L, 4L, 5L, 4L, 5L, 24L, 12L,
1L, 3L, 3L, 8L, 3L, 4L, 4L, 12L, 8L, 2L, 24L, 3L, 11L, 4L, 6L,
11L, 5L, 24L, 12L, 4L, 9L, 5L, 12L, 6L, 24L, 12L, 9L, 11L, 10L,
2L, 4L, 5L, 2L, 5L, 12L, 4L, 5L, 6L, 9L, 5L, 6L, 1L, 6L, 12L,
3L, 5L, 3L, 24L, 11L, 8L, 7L, 13L, 16L, 7L, 15L, 20L, 17L, 7L,
17L, 14L, 22L, 21L, 13L, 20L, 18L, 21L, 7L, 7L, 18L, 19L, 21L,
17L, 20L, 17L, 15L, 23L, 22L, 17L, 21L, 7L, 20L, 17L, 22L, 20L,
23L, 7L, 19L, 23L, 20L, 17L, 21L, 20L, 21L, 15L, 22L, 18L, 14L,
18L, 14L, 19L, 22L, 7L, 7L, 22L, 20L, 21L, 1L, 24L, 1L, 21L,
20L, 7L, 21L, 1L, 21L, 24L, 1L, 24L, 21L, 19L, 21L, 24L, 20L,
22L, 20L, 24L, 1L, 24L, 22L, 20L, 7L, 22L, 20L, 22L, 1L, 1L,
1L, 22L, 19L, 24L, 17L, 12L, 10L, 13L, 18L, 12L, 2L, 17L, 18L,
16L, 11L, 17L, 18L, 13L, 2L, 12L, 13L, 17L, 12L, 10L, 17L, 17L,
13L, 12L, 17L, 17L, 13L, 17L, 17L, 12L, 18L, 12L, 18L, 17L, 14L,
6L, 3L, 6L, 3L, 6L, 4L, 3L, 14L, 15L, 3L, 8L, 6L, 8L, 8L, 8L,
4L, 3L, 9L, 8L, 3L, 3L, 15L, 15L, 3L, 15L, 5L, 3L, 14L, 5L, 5L,
8L, 14L, 5L, 8L, 9L, 6L, 5L, 15L, 14L, 9L, 4L, 9L, 4L, 8L, 3L,
18L, 21L, 17L, 16L, 22L, 16L, 24L, 21L, 20L, 18L, 24L, 20L, 21L,
17L, 16L, 18L, 6L, 24L, 19L, 20L, 12L, 16L, 12L, 16L, 1L, 20L,
23L, 21L, 17L, 1L, 16L, 21L, 18L, 19L, 22L, 12L, 20L, 1L, 18L,
18L, 22L, 17L, 6L, 17L, 17L, 1L, 20L, 18L, 16L, 19L, 17L, 18L,
22L, 21L, 12L, 20L, 24L, 20L, 1L, 22L, 20L, 19L, 24L, 19L, 22L,
20L, 17L, 4L, 7L, 3L, 3L, 4L, 8L, 14L, 2L, 3L, 13L, 9L, 3L, 2L,
4L, 8L, 10L, 11L, 8L, 15L, 15L, 9L, 15L, 3L, 13L, 3L, 4L, 2L,
15L, 15L, 7L, 9L, 11L, 9L, 5L, 14L, 9L, 14L, 8L, 4L, 9L, 8L,
15L, 5L, 3L, 13L, 8L, 14L, 4L, 14L, 7L, 4L, 5L, 9L, 8L, 15L,
13L, 5L, 11L, 10L, 21L, 7L, 7L, 1L, 12L, 17L, 21L, 24L, 7L, 12L,
18L, 17L, 17L, 21L, 7L, 7L, 17L, 21L, 20L, 1L, 12L, 7L, 20L,
19L, 17L, 12L, 20L, 7L, 6L, 12L, 23L, 22L, 21L, 7L, 1L, 22L,
23L, 18L, 17L, 1L, 22L, 1L, 1L, 17L, 24L, 12L, 21L, 24L, 23L,
12L, 22L, 18L, 20L, 19L, 17L, 24L, 21L, 4L, 11L, 9L, 3L, 11L,
15L, 14L, 3L, 3L, 9L, 16L, 9L, 4L, 16L, 2L, 8L, 15L, 8L, 8L,
14L, 2L, 16L, 8L, 11L, 9L, 2L, 3L, 5L, 9L, 9L, 3L, 4L, 5L, 8L,
13L, 3L, 14L, 8L, 2L, 15L, 14L, 13L, 9L, 8L, 3L, 3L, 11L, 4L,
5L, 11L, 10L, 8L, 17L, 24L, 12L, 6L, 12L, 17L, 7L, 6L, 19L, 12L,
20L, 12L, 20L, 24L, 1L, 20L, 22L, 21L, 1L, 20L, 20L, 20L, 12L,
17L, 1L, 21L, 7L, 12L, 1L, 6L, 12L, 18L, 3L, 13L, 10L, 5L, 9L,
15L, 11L, 9L, 10L, 3L, 8L, 8L, 3L, 5L, 11L, 8L, 2L, 9L, 4L, 2L,
14L, 3L, 4L, 14L, 2L, 8L, 2L, 4L, 14L, 3L, 3L, 4L, 14L, 13L,
3L, 5L, 4L, 14L, 14L, 5L, 14L, 11L, 2L, 9L, 8L, 14L, 13L, 11L,
14L, 2L, 4L, 9L, 16L, 2L, 2L, 4L, 8L, 14L, 1L, 6L, 1L, 12L, 17L,
18L, 6L, 12L, 17L, 6L, 21L, 1L, 23L, 17L, 12L, 1L, 22L, 1L, 12L,
22L, 1L, 12L, 17L, 1L, 1L, 22L, 1L, 12L, 23L, 6L, 17L, 6L, 12L,
19L, 19L, 19L, 11L, 9L, 16L, 4L, 9L, 8L, 13L, 3L, 8L, 3L, 14L,
8L, 8L, 2L, 9L, 9L, 3L, 2L, 3L, 14L, 5L, 8L, 14L, 8L, 14L, 4L,
14L, 3L, 11L, 8L, 8L, 4L, 11L, 21L, 22L, 8L, 3L, 9L, 2L, 18L,
8L, 2L, 9L, 8L, 9L, 3L, 11L, 9L, 8L, 11L, 22L, 8L, 22L, 2L, 8L,
18L, 2L, 8L, 22L, 11L, 22L, 11L, 3L, 3L, 11L, 8L, 20L, 3L, 20L,
18L, 21L, 9L, 2L, 9L, 3L, 8L, 8L, 21L, 11L, 21L, 22L, 24L, 6L,
17L, 6L, 19L, 6L, 12L, 12L, 6L, 14L, 17L, 19L, 17L, 17L, 15L,
13L, 4L, 4L, 19L, 1L, 24L, 13L, 5L, 15L, 1L, 7L, 4L, 1L, 17L,
1L, 13L, 12L, 23L, 4L, 5L, 14L, 14L, 1L, 4L, 17L, 12L, 7L, 4L,
14L, 12L, 4L, 19L, 6L, 16L, 12L, 17L, 21L, 7L, 22L, 21L, 21L,
21L, 21L, 6L, 19L, 6L, 19L, 21L, 7L, 12L, 12L, 23L, 18L, 7L,
1L, 12L, 23L, 7L, 23L, 17L, 20L, 7L, 7L, 1L, 19L, 17L, 19L, 1L,
24L, 12L, 22L, 21L, 17L, 20L, 18L, 17L, 22L, 7L, 12L, 24L, 18L,
21L, 6L, 17L, 1L, 21L, 1L, 18L, 22L, 1L, 6L, 12L, 17L, 7L, 24L,
19L, 1L, 19L, 6L, 12L, 19L, 22L, 9L, 3L, 14L, 2L, 4L, 9L, 14L,
3L, 11L, 8L, 9L, 3L, 8L, 16L, 8L, 15L, 8L, 14L, 13L, 4L, 8L,
13L, 8L, 14L, 3L, 4L, 8L, 15L, 4L, 5L, 16L, 2L, 11L, 8L, 15L,
14L, 14L, 2L, 11L, 5L, 14L, 4L, 2L, 5L, 3L, 3L, 2L, 2L, 8L, 14L,
2L, 11L, 8L, 4L, 11L, 9L, 9L, 13L, 3L, 8L, 14L, 14L, 9L, 8L,
11L, 9L, 10L, 2L, 4L, 21L, 7L, 12L, 6L, 24L, 7L, 22L, 12L, 6L,
7L, 1L, 21L, 12L, 6L, 12L, 19L, 12L, 17L, 21L, 7L, 21L, 12L,
1L, 19L, 17L, 12L, 19L, 12L, 20L, 17L, 12L, 21L, 19L, 19L, 17L,
22L, 7L, 19L, 19L, 17L, 12L, 19L, 17L, 22L, 6L, 17L, 7L, 1L,
19L, 17L, 1L, 22L, 23L, 21L, 21L, 18L, 7L, 21L, 17L, 7L, 6L,
24L, 19L, 17L, 18L, 3L, 4L, 9L, 8L, 16L, 13L, 15L, 3L, 10L, 14L,
9L, 15L, 2L, 4L, 5L, 11L, 16L, 4L, 8L, 3L, 8L, 9L, 15L, 2L, 13L,
4L, 11L, 11L, 8L, 3L, 14L, 3L, 4L, 4L, 3L, 4L, 8L, 4L, 11L, 9L,
8L, 2L, 2L, 11L, 2L, 4L, 11L, 14L, 14L, 3L, 10L, 9L, 4L, 10L,
9L, 14L, 8L, 9L, 3L, 8L, 5L, 9L, 4L, 5L, 11L, 10L, 14L, 5L, 8L,
16L, 5L, 4L, 11L, 8L), species_id = c("NL", "NL", "DM", "DM",
"DM", "PF", "PE", "DM", "DM", "PF", "DS", "DM", "DM", "DM", "DM",
"DM", "DS", "PP", "PF", "DS", "DM", "NL", "DM", "SH", "DM", "DM",
"DM", "DM", "PP", "DS", "DM", "DM", "DM", "DM", "DM", "OT", "DM",
"NL", "DM", "DM", "DM", "DS", "DM", "DM", "DM", "DM", "DM", "DM",
"PP", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DS", "DM",
"PE", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DO", "PF", "OX",
"DM", "NL", "DS", "PF", "DM", "DS", "SS", "PF", "DM", "DS", "PF",
"DM", "DM", "DM", "DM", "DM", "PF", "DM", "PP", "DM", "DS", "DM",
"DM", "DM", "DM", "DM", "DM", "DM", "DM", "DS", "DM", "DM", "DM",
"DS", "DM", "NL", "NL", "PP", "DM", "DS", "DM", "DM", "PF", "DM",
"DM", "DM", "OX", "DM", "DM", "DM", "NL", "DM", "DM", "DM", "DM",
"DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DS", "DM", "PF",
"DM", "DM", "PF", "DM", "DM", "DM", "DM", "DS", "DM", "DM", "DM",
"DM", "DS", "DM", "DM", "DM", "DS", "DS", "DS", "DM", "DM", "DM",
"DS", "DM", "DM", "DM", "PP", "DM", "DS", "OX", "DM", "DM", "DM",
"DM", "NL", "PF", "DM", "DM", "DM", "DS", "OX", "DM", "DM", "DM",
"DM", "DS", "DM", "DS", "OX", "DM", "DM", "DS", "DM", "DM", "DS",
"DM", "PE", "NL", "DS", "PF", "DM", "DM", "DM", "DS", "DS", "DM",
"DM", "DM", "DS", "DS", "DS", "DM", "DM", "DM", "DS", "PF", "DM",
"NL", "DM", "PF", "PP", "PF", "DM", "DS", "DM", "DS", "DS", "NL",
"DM", "DM", "DM", "DM", "DM", "DM", "DS", "DS", "DM", "DM", "DM",
"DS", "DS", "PE", "DS", "DS", "DS", "OX", "DM", "DM", "DM", "DM",
"DS", "OT", "DM", "DS", "DM", "DS", "DM", "DM", "DM", "DM", "DM",
"DM", "DM", "DM", "DM", "PE", "DM", "DS", "DM", "NL", "DS", "DM",
"DM", "DM", "DS", "NL", "DM", "OL", "DM", "DS", "OL", "DS", "PE",
"DM", "NL", "NL", "DM", "DM", "DM", "DS", "DM", "DM", "DM", "DM",
"DS", "DO", "DM", "DO", "DM", "OT", "NL", "DM", "OT", "DS", "DS",
"DM", "DM", "DM", "DM", "DM", "DM", "DS", "DS", "DS", "RM", "DM",
"DM", "NL", "DM", "DM", "DO", "DM", "DM", "DM", "OL", "DS", "DO",
"DS", "DM", "DS", "DM", "DS", "PF", "OX", "DM", "DS", "DM", "DO",
"DM", "DS", "DM", "DS", "DM", "PF", "NL", "DM", "DM", "DM", "DM",
"NL", "DM", "OL", "DM", "NL", "DM", "OT", "DO", "DS", "PF", "DM",
"DM", "DM", "DS", "NL", "DM", "DM", "OL", "DS", "PF", "DM", "DM",
"DM", "DM", "DM", "DM", "PF", "PF", "DS", "DO", "DM", "DM", "DS",
"DM", "DS", "DM", "DS", "OL", "OL", "DM", "DS", "NL", "PF", "DS",
"NL", "DS", "DM", "DM", "RM", "DS", "DM", "OL", "DM", "DS", "NL",
"DS", "PF", "DM", "DS", "DM", "DS", "DS", "DO", "DM", "DM", "DS",
"DM", "DM", "DM", "DM", "DM", "DM", "DO", "DM", "PF", "OT", "PF",
"DM", "PF", "NL", "DM", "DM", "DM", "DM", "PF", "OL", "OT", "DM",
"DM", "OL", "OT", "DM", "DS", "DM", "DO", "DS", "OT", "DM", "DM",
"DS", "DM", "DM", "DS", "DS", "NL", "DS", "DO", "DM", "NL", "PF",
"OT", "DS", "OT", "PF", "NL", "DS", "DS", "OT", "DM", "DS", "DM",
"DM", "DS", "DM", "DS", "NL", "DM", "DM", "OT", "DM", "DS", "DS",
"DS", "OT", "NL", "DM", "OT", "PF", "DS", "OT", "OT", "DM", "OL",
"DM", "NL", "DM", "DM", "NL", "PF", "DM", "DS", "OL", "PF", "DO",
"DM", "PE", "DM", "DM", "PF", "DM", "DM", "DM", "DM", "DM", "DS",
"DM", "DS", "DM", "DM", "NL", "PF", "DM", "OT", "OT", "DM", "DM",
"DS", "DM", "DM", "DS", "OL", "DM", "NL", "OT", "DS", "DM", "DM",
"DS", "DS", "DS", "NL", "DS", "DM", "DM", "DS", "DM", "DS", "DS",
"DS", "NL", "DM", "DM", "OT", "DS", "OT", "DM", "DM", "DS", "DM",
"DM", "DM", "OT", "DM", "DM", "DM", "OT", "DS", "DM", "OX", "NL",
"DM", "PF", "DM", "DM", "DM", "DM", "DM", "DS", "DM", "OT", "OT",
"DM", "DM", "DM", "OT", "PE", "DM", "DM", "DS", "DM", "OT", "DS",
"DS", "DS", "DS", "DM", "DM", "DS", "DM", "DS", "PF", "DS", "OT",
"DM", "DM", "OL", "DM", "DM", "NL", "OT", "OT", "DS", "DM", "DM",
"DM", "DM", "DM", "DS", "DM", "DM", "DM", "DM", "DM", "NL", "DS",
"DM", "DM", "PF", "DM", "PF", "DS", "DM", "NL", "DS", "DS", "OT",
"OT", "DM", "NL", "PF", "OT", "DM", "DM", "OL", "DM", "OT", "DS",
"OT", "PE", "PF", "PE", "DS", "DS", "DS", "DS", "DM", "DS", "OT",
"PF", "DM", "DS", "PF", "DS", "DS", "DS", "DM", "DS", "DM", "OT",
"DM", "RM", "DM", "DM", "DM", "DM", "DM", "OL", "DM", "DS", "DM",
"DS", "OT", "DM", "OT", "DS", "DM", "DM", "OT", "DM", "DM", "DM",
"DM", "DO", "DM", "DS", "DM", "OL", "OT", "DM", "DS", "DM", "DM",
"DS", "OT", "DM", "DM", "OT", "NL", "DM", "PF", "PE", "OL", "DS",
"PE", "DM", "PE", "DM", "OT", "DM", "NL", "DS", "PF", "DM", "DS",
"DM", "DM", "NL", "OT", "DM", "DM", "DS", "DS", "DS", "SS", "DS",
"DM", "DM", "DM", "DM", "OL", "DM", "DM", "DM", "DM", "DM", "DM",
"DM", "OT", "DM", "DM", "DM", "DM", "DS", "OT", "DM", "DS", "DS",
"DM", "DS", "DS", "DS", "DM", "DS", "DM", "DO", "DS", "DS", "DS",
"DM", "DM", "DS", "DM", "DS", "DM", "DS", "DS", "DM", "DS", "DS",
"DM", "DS", "DM", "DS", "DM", "DS", "DS", "DM", "DM", "DS", "DM",
"DM", "NL", "OT", "DM", "DM", "DS", "DM", "PF", "DM", "DS", "DS",
"DS", "DM", "DS", "DM", "DS", "DM", "DS", "DS", "NL", "DS", "DM",
"NL", "DM", "DS", "DS", "DM", "DS", "DM", "DS", "DM", "SS", "OT",
"OL", "OL", "DS", "DS", "DS", "DM", "DM", "DM", "DS", "NL", "DS",
"DS", "DS", "DS", "DM", "NL", "DM", "DS", "DM", "DM", "DS", "PM",
"DS", "DM", "NL", "DM", "DM", "DS", "DS", "DM", "DS", "DS", "DM",
"DS", "DS", "PP", "DM", "DM", "DM", "DS", "DS", "DM", "DS", "DM",
"DM", "DM", "DO", "DM", "DM", "DS", "DS", "DM", "DM", "OT", "DS",
"DS", "OT", "DO", "PF", "DS", "DS", "DM", "DM", "DM", "DO", "DS",
"DS", "DS", "DM", "DS", "DM", "PP", "DS", "DS", "DM", "DS", "DS",
"DM", "DM", "SS", "DS", "DS", "DM", "DM", "DM", "DS", "DO", "OL",
"DM", "DS", "DM", "DS", "DS", "DM", "DM", "DS", "DM", "DO", "DS",
"DS", "DM", "DS", "DM", "DS", "PF", "PF", "DM", "NL", "DS", "DS",
"DS", "DM", "PF", "DO", "OT", "DM", "DS", "PP", "DS", "DM", "DS",
"DS", "NL", "PP", "DM", "DS", "DM", "PF", "DS", "DS", "DS", "DM",
"DS", "DM", "SS", "DS", "DS", "DS", "DM", "DM", "DM", "OT", "DS",
"DS", "DS", "DO", "DS", "DS", "DS", "DM", "DM", "DS", "DM", "DS",
"DM", "DS", "DS", "DM", "OL", "OT", "DM", "NL", "DS", "PP", "DM",
"DM", "DM", "DS", "DS", "DM", "DM", "DS", "DM", "DO", "DM", "DS",
"DS", "DS", "DS", "DM", "DM", "DS", "DS", "DM", "DM", "DS", "DS",
"DM", "DS", "DM", "DS", "DM", "DM", "DM", "DS", "PF", "DM", "DS",
"OT", "OL", "DS", "DO", "DM", "PP", "DS", "PP", "DS", "DM", "NL",
"DM", "NL", "DM", "DM", "DS", "NL", "PP", "DM", "DM", "DS", "DM",
"DS", "DM", "DM", "DS", "DS", "DM", "DS", "DS", "DS", "DS", "DS",
"DM", "DS", "DS", "DS", "PE", "DM", "PE", "DS", "DM", "DM", "OT",
"DS", "PP", "OL", "DS", "NL", "DM", "DM", "DS", "DM", "PF", "DM",
"PP", "DM", "DS", "DO", "DS", "NL", "PM", "DS", "DM", "PP", "DM",
"DM", "DM", "DM", "PM", "DS", "OL", "DS", "OT", "DM", "NL", "DM",
"DM", "DM", "DS", "DM", "DS", "DM", "DS", "DS", "DM", "DS", "DM",
"DS", "PF", "DS", "DS", "NL", "DS", "DS", "DM", "NL", "DS", "DM",
"DS", "DS", "DM", "OL", "OL", "DM", "DM", "DM", "DM", "DS", "PP",
"DS", "DM", "DM", "DS", "DS", "OL", "DS", "DS", "OL", "DS", "DM",
"OL", "NL", "DM", "DS", "DS", "PP", "PE", "DM", "NL", "DS", "DM",
"DM", "DM", "DS", "DO", "DS", "DS", "DS", "PF", "DM", "DM", "PF",
"PE", "DM", "NL", "PP", "OT", "DS", "DS", "DS", "DM", "PP", "DM",
"DM", "PF", "DS", "PF", "OL", "DS", "OT", "PP", "OT", "DS", "DS",
"PE", "DM", "DM", "DS", "DS", "DM", "PF", "DM", "NL", "DM", "DM",
"OL", "DS", "DM", "OT", "PP", "DM", "DM", "DS", "NL", "DM", "DS",
"PP", "PF", "DS", "DS", "DS", "DM", "DM", "DS", "DM", "DS", "DS",
"PF", "DM", "DM", "DS", "DM", "DS", "SS", "PF", "PE", "DO", "NL",
"OT", "DS", "OT", "DM", "DM", "DM", "DS", "DS", "PP", "PE", "DS",
"DS", "DS", "DM", "DM", "PE", "DM", "DM", "DS", "DM", "DS", "DS",
"DM", "DM", "OT", "DM", "OL", "DS", "DS", "OL", "DM", "PP", "NL",
"DM", "DO", "DM", "DS", "DM", "DS", "DS", "DO", "DM", "DM", "DS",
"DS", "DM", "DS", "DS", "DS", "DS", "NL", "DS", "DM", "DS", "DM",
"DS", "PF", "DM", "NL", "DM", "DM", "PF", "PP", "DM", "OT", "OT",
"DM", "PF", "DS", "DM", "DS", "NL", "SS", "DS", "DS", "DS", "PF",
"DS", "PP", "DM", "DM", "DS", "PF", "DS", "NL", "PP", "DS", "NL",
"PP", "DM", "PF", "OT", "DM", "DM", "DS", "OL", "PF", "DS", "SS",
"DM", "OT", "OL", "DM", "DM", "PE", "DM", "DM", "DS", "DS", "PF",
"DS", "DM", "DS", "DS", "OT", "DM", "DM", "DM", "DO", "OL", "DS",
"DS", "OL", "DS", "DM", "DM", "DM", "DO", "DM", "OT", "OT", "DS",
"DS", "DO", "DS", "DM", "PF", "DM", "DS", "DM", "DS", "OL", "DM",
"DM", "SH", "OT", "DM", "DM", "DM", "DM", "OT", "DM", "DM", "AH",
"DS", "DM", "DS", "DS", "DS", "DS", "NL", "DS", "OL", "DM", "OL",
"DM", "DS", "DM", "DM", "OT", "DS", "DM", "NL", "DM", "PE", "DM",
"DM", "SS", "DM", "OT", "OT", "OL", "RM", "OL", "DM", "OL", "OL",
"DM", "DS", "DM", "DM", "DM", "DS", "DM", "NL", "OL", "DM", "OT",
"RM", "OL", "DM", "DS", "DM", "DS", "DO", "DS", "DS", "DS", "DS",
"OL", "DO", "OL", "OL", "DS", "OL", "DM", "NL", "DM", "DM", "DM",
"OL", "DM", "DS", "DS", "DM", "DM", "DM", "DS", "DS", "DS", "DM",
"DM", "NL", "DS", "OL", "OT", "DM", "DM", "DM", "DS", "DM", "DM",
"DS", "OT", "OT", "OL", "OL", "DM", "OL", "OT", "OT", "DM", "DM",
"DS", "DM", "DM", "DM", "DM", "DM", "DM", "DO", "OL", "DM", "OL",
"DM", "DM", "OL", "DM", "OL", "OL", "DM", "DM", "DM", "DM", "DM",
"DM", "DM", "DS", "DM", "OT", "OT", "DM", "DM", "DS", "DS", "DM",
"DM", "DS", "DM", "OT", "DM", "DM", "OL", "OL", "DM", "DM", "DS",
"DM", "PE", "DM", "OT", "DM", "OT", "DM", "DM", "DM", "DM", "DM",
"DM", "OL", "OL", "DM", "DM", "DM", "OL", "DO", "DM", "DS", "OL",
"DS", "DM", "DM", "DS", "DS", "DO", "DS", "DM", "DM", "DM", "DS",
"DS", "DM", "OT", "OL", "DS", "DM", "DS", "OT", "DM", "DS", "PM",
"DM", "DS", "DS", "PM", "DS", "DS", "DS", "DM", "OL", "DM", "OL",
"DM", "DM", "DM", "DM", "OL", "PM", "DS", "DM", "DS", "DM", "PE",
"DM", "DM", "DS", "DM", "DS", "DS", "DM", "DS", "DS", "DS", "PF",
"DO", "PF", "DS", "DS", "DM", "DM", "DS", "DS", "DS", "DS", "DS",
"DS", "DM", "DO", "DM", "DM", "DS", "DS", "DS", "DO", "DO", "DS",
"DM", "DS", "DM", "DM", "DS", "DS", "DM", "DM", "DS", "DS", "DS",
"NL", "DM", "NL", "DS", "DS", "DM", "DS", "DS", "DS", "DS", "DS",
"DS", "DS", "DS", "DM", "DS", "DS", "PE", "DS", "DS", "DS", "DO",
"OT", "NL", "PP", "DO", "DS", "PE", "DS", "OT", "NL", "DS", "PM",
"DS", "DO", "DM", "DM", "DS", "DM", "DS", "DS", "DS", "DM", "NL",
"DS", "NL", "DS", "NL", "DM", "DS", "DS", "DM", "PP", "DM", "DS",
"DS", "DS", "DS", "DS", "PF", "DS", "NL", "DS", "DS", "DS", "DS",
"DS", "DS", "DM", "DS", "NL", "DM", "DO", "DS", "DO", "DS", "DM",
"DS", "DM", "NL", "OT", "DM", "DS", "OT", "PP", "DS", "DM", "DO",
"DS", "DS", "DS", "DO", "DM", "DS", "DM", "DM", "DS", "DS", "DS",
"DS", "DM", "DS", "DS", "PP", "DM", "DM", "DM", "DM", "DM", "DS",
"OT", "OT", "PF", "DS", "DM", "DS", "PF", "DS", "DS", "NL", "DS",
"DS", "DS", "DS", "DM", "DO", "DS", "PF", "PF", "PE", "DM", "DS",
"DM", "DM", "DS", "OL", "DM", "NL", "DS", "PP", "DM", "DM", "DS",
"DS", "DS", "DS", "DS", "DS", "DS", "DM", "PP", "DS", "DS", "PP",
"DO", "DS", "DM", "DM", "PE", "OT", "DM", "PF", "DM", "DS", "DS",
"NL", "DS", "PF", "PF", "DS", "PE", "DS", "PF", "OT", "DM", "DM",
"DS", "NL", "DS", "OT", "DM", "DO", "DS", "DS", "DS", "DS", "DS",
"DO", "DS", "PP", "DO", "OL", "OT", "DS", "PP", "DM", "PP", "DM",
"OL", "DM", "OL", "PP", "PP", "DS", "DS", "DS", "DS", "DM", "OT",
"OL", "DS", "OT", "DS", "NL", "DS", "OL", "OL", "DM", "DM", "DS",
"DS", "DS", "DM", "DS", "DS", "OL", "OT", "NL", "DM", "DS", "DM",
"OT", "DS", "PP", "DO", "DS", "DM", "DM", "NL", "DO", "OT", "OT",
"DS", "DS", "DS", "DS", "OT", "DS", "DM", "DS", "DM", "DS", "DS",
"DS", "OT", "OT", "PP", "DM", "OT", "OL", "DM", "PE", "DS", "DS",
"OT", "DM", "DS", "OT", "NL", "DS", "DM", "OT", "DM", "DM", "OT",
"DS", "DS", "DS", "DM", "PE", "SS", "OT", "PP", "DM", "OL", "OL",
"OL", "DM", "PP", "OT", "DM", "OT", "PF", "OL", "DM", "OT", "DS",
"DS", "OT", "OT", "DM", "DM", "PF", "DS", "DM", "DM", "DM", "OT",
"OL", "DS", "OT", "DM", "PP", "DO", "DO", "DS", "SS", "NL", "DO",
"DS", "NL", "DO", "DM", "PP", "DM", "DM", "DS", "DM", "OL", "DM",
"DM", "PE", "DS", "DS", "DS", "OT", "DS", "DS", "PE", "OT", "DM",
"NL", "OL", "OT", "DO", "DS", "NL", "OT", "OT", "OL", "DS", "OL",
"DS", "PE", "PF", "DS", "OT", "DM", "OT", "DM", "DM", "DM", "DS",
"DS", "PP", "DM", "OT", "DM", "DM", "OT", "NL", "DS", "RM", "OT",
"DM", "PE", "DM", "OT", "DM", "OT", "DM", "OT", "PF", "PE", "DM",
"RM", "OT", "DM", "OT", "RM", "OL", "OT", "OT", "OT", "DS", "DM",
"DS", "DS", "OL", "PF", "DM", "OT", "PF", "DS", "OL", "DM", "PM",
"OT", "OL", "NL", "DM", "DM", "DS", "OL", "PF", "DM", "DM", "DM",
"OL", "NL", "RM", "DO", "OL", "DM", "DM", "PE", "NL", "PM", "DM",
"DM", "OT", "DM", "DM", "DM", "DO", "DM", "DS", "DS", "DM", "DM",
"OT", "DM", "DO", "OL", "OT", "NL", "OL", "DM", "DM", "DS", "NL",
"DM", "DM", "DM", "DM", "DM", "DM", "OT", "DM", "DM", "OL", "DS",
"OL", "DM", "DM", "NL", "DM", "DM", "DM", "OT", "OT", "DM", "OT",
"OT", "OT", "DM", "DM", "DS", "DM", "OL", "DO", "NL", "DO", "PF",
"DS", "DS", "DM", "OL", "DS", "RM", "DM", "DS", "RM", "DM", "PP",
"DM", "DM", "PE", "DS", "DM", "DM", "PE", "DM", "DO", "PF", "DM",
"DM", "DO", "DS", "PF", "OT", "DM", "OT", "OL", "DM", "OL", "OL",
"OL", "DM", "OT", "RM", "DS", "DM", "OL", "DM", "DS", "DM", "OL",
"DO", "DM", "DM", "DM", "DM", "DS", "DM", "RM", "OL", "NL", "OT",
"OT", "DM", "OL", "DM", "NL", "DS", "PF", "OL", "RM", "RM", "DO",
"PE", "DM", "DO", "OT", "DS", "OL", "DM", "DO", "DS", "RM", "PF",
"NL", "DO", "DM", "DM", "DM", "DM", "OT", "DM", "DM", "DM", "DM",
"DS", "DM", "DM", "OT", "NL", "DM", "OT", "DM", "NL", "OT", "DM",
"DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "NL", "DO",
"DM", "DO", "DM", "DM", "DM", "OT", "DO", "OL", "DM", "OL", "OT",
"OL", "DM", "DM", "DM", "RM", "PF", "DS", "DS", "OL", "DO", "DM",
"DS", "OL", "DM", "DM", "DM", "OL", "OT", "PF", "DM", "NL", "DS",
"DM", "DM", "DM", "DM", "DM", "DM", "DM", "PF", "PF", "NL", "OT",
"DM", "DM", "DO", "DM", "OT", "OT", "PF", "DM", "DS", "DM", "OL",
"RM", "RM", "OL", "DO", "DS", "DS", "RM", "OT", "OL", "DO", "DM",
"DO", "DS", "RM", "DM", "DM", "PE", "DM", "DO", "PF", "PE", "DS",
"OL", "RM", "OL", "DM", "DM", "DO", "DO", "OL", "DM", "DM", "DM",
"DM", "DS", "DM", "DM", "PE", "DO", "DO", "DM", "DS", "DM", "DS",
"DS", "DM", "DM", "DM", "OT", "DS", "DM", "DO", "DM", "DS", "DS",
"DM", "DM", "DM", "DM", "DS", "DM", "DM", "DM", "DM", "DM", "DM",
"DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM",
"DM", "NL", "DS", "DS", "DS", "DM", "PF", "OL", "DM", "PF", "OT",
"OT", "RM", "DM", "DM", "RM", "RM", "PF", "DS", "PF", "DM", "RM",
"DS", "DS", "DM", "NL", "RM", "DS", "DM", "OL", "DM", "OT", "RM",
"PE", "OL", "OL", "PF", "DM", "PF", "RM", "DO", "DO", "PF", "OT",
"OT", "DM", "DM", "DS", "DS", "DM", "PF", "DM", "DM", "DM", "DM",
"OL", "DS", "DM", "DM", "DM", "NL", "DM", "DM", "DS", "DO", "DO",
"PP", "OL", "DS", "DM", "OL", "DM", "DM", "DM", "PE", "RM", "DO",
"DM", "PF", "DS", "DM", "DM", "OT", "RM", "DM", "PF", "DM", "DO",
"DM", "DM", "DM", "DM", "DS", "PF", "DM", "OT", "DO", "PF", "DM",
"DM", "OT", "DM", "DM", "DS", "OT", "DO", "DM", "DM", "DO", "DS",
"DM", "DM", "OL", "DS", "DO", "DM", "DS", "DO", "DM", "PF", "OT",
"DM", "DS", "DO", "DM", "RM", "DS", "RM", "DM", "OL", "DS", "DM",
"DO", "DM", "DO", "DM", "DM", "DM", "PF", "OL", "DM", "RM", "DO",
"DS", "DM", "DM", "DS", "RM", "RM", "DM", "DM", "OL", "OL", "DM",
"RM", "DM", "DS", "DM", "DS", "DS", "DM", "PF", "DS", "DM", "DM",
"DS", "OL", "DM", "DM", "DM", "DM", "DM", "OT", "DM", "DM", "RM",
"DO", "OT", "DM", "DM", "DM", "DM", "OT", "DM", "DS", "DO", "DS",
"RM", "DM", "DS", "OL", "DS", "DS", "DS", "DM", "DM", "NL", "DM",
"DO", "RM", "DS", "OT", "DS", "DM", "DM", "DM", "DM", "DM", "DX",
"DM", "DM", "DO", "OT", "PE", "DS", "DM", "DS", "DM", "OT", "OL",
"DM", "DM", "PF", "DO", "OL", "DM", "DO", "DM", "DS", "DM", "NL",
"PF", "PF", "DM", "NL", "DM", "PE", "DS", "DM", "DM", "OT", "DM",
"DM", "DM", "NL", "DM", "DO", "DM", "DS", "OL", "OL", "DM", "DM",
"NL", "OL", "PF", "RM", "RM", "DM", "DM", "RM", "RM", "PF", "DM",
"DS", "DS", "RM", "DS", "DS", "RM", "DS", "DS", "DM", "DO", "PE",
"DS", "RM", "DS", "PE", "PF", "DM", "OL", "DS", "DS", "DS", "DM",
"DM", "DM", "OT", "DM", "PF", "DM", "DM", "DM", "RM", "OT", "DS",
"DS", "RM", "DM", "DS", "PF", "DS", "DM", "PF", "DS", "DS", "DS",
"PF", "DM", "OT", "PF", "DS", "DS", "DM", "DM", "DS", "DS", "OT",
"OL", "DM", "OL", "PF", "DM", "OT", "PF", "RM", "DM", "DM", "DM",
"DS", "OL", "OT", "DS", "DM", "RM", "PF", "OT", "DS", "DS", "DM",
"DS", "DS", "DS", "DM", "RM", "DO", "DS", "DM", "RM", "DM", "DS",
"DO", "OL", "PP", "DS", "OT", "DS", "DS", "PF", "DM", "DS", "OL",
"DS", "DM", "DM", "DM", "DS", "PF", "PF", "RM", "DM", "DS", "PF",
"DS", "SS", "PE", "OL", "PF", "PF", "DM", "PF", "OT", "DM", "DM",
"OT", "DS", "DM", "RM", "DS", "OL", "DS", "RM", "DM", "DS", "DS",
"DS", "PF", "PF", "DM", "DM", "OL", "NL", "PF", "DM", "DM", "DS",
"DS", "DS", "DM", "DM", "DM", "OL", "DM", "SS", "DS", "DM", "DS",
"OL", "PE", "DM", "DO", "DS", "DS", "DS", "NL", "PF", "DS", "DM",
"DS", "NL", "DS", "DS", "DS", "DM", "DS", "DS", "DS", "DS", "DM",
"PP", "DS", "DS", "OT", "DS", "DS", "DM", "DS", "DO", "DM", "NL",
"PP", "DS", "DM", "DM", "DS", "DS", "DM", "DS", "DM", "PF", "PF",
"OL", "DS", "DM", "DS", "DM", "OL", "PF", "DM", "DS", "DM", "OL",
"DS", "DS", "DM", "DS", "DS", "DS", "DS", "DS", "DM", "DM", "PF",
"PF", "DM", "NL", "DO", "NL", "DS", "DS", "DM", "DS", "NL", "NL",
"NL", "NL", "DM", "DS", "DS", "DM", "DO", "DS", "DS", "DS", "DS",
"DS", "DM", "DS", "DS", "DS", "DS", "DS", "DS", "DS", "DS", "DS",
"DM", "DM", "DS", "DM", "DS", "OT", "DS", "DS", "DM", "NL", "DM",
"DS", "DM", "DM", "DM", "DS", "DS", "OL", "DM", "DS", "OL", "DM",
"DS", "DS", "DS", "DS", "PE", "DO", "DM", "DM", "DO", "DM", "DS",
"DS", "DS", "NL", "PF", "DO", "SS", "PP", "DS", "DS", "DS", "DO",
"DS", "DS", "DS", "DS", "PE", "DS", "DO", "NL", "DM", "DS", "DS",
"DS", "DO", "DS", "DM", "DS", "DM", "OL", "DM", "NL", "DS", "NL",
"DM", "DS", "PP", "DM", "DS", "OT", "DS", "PP", "DM", "DM", "PF",
"DS", "DM", "DS", "DS", "DM", "DS", "DM", "DM", "DM", "DM", "DS",
"DS", "OT", "DM", "PF", "OT", "DM", "DS", "DM", "OT", "DS", "NL",
"DM", "DS", "PE", "PE", "PF", "DS", "DO", "OT", "NL", "DS", "DM",
"DS", "DS", "DS", "DS", "DS", "DM", "DO", "DO", "SS", "NL", "DO",
"DS", "DO", "DS", "DO", "DM", "DM", "SS", "DM", "NL", "PF", "DM",
"DS", "DS", "DM", "DM", "DM", "PP", "DS", "PF", "DM", "DS", "PF",
"OT", "DS", "DS", "DM", "DM", "OL", "DM", "DM", "DO", "DM", "DS",
"PF", "DO", "DS", "NL", "DS", "DS", "DS", "OL", "DS", "DO", "DS",
"DS", "DO", "DM", "DS", "DS", "OL", "DM", "NL", "SS", "NL", "NL",
"PP", "DM", "DM", "PF", "PF", "DS", "DM", "DS", "DM", "DS", "PF",
"DM", "PF", "DM", "OT", "PP", "DM", "OT", "DM", "DS", "DM", "PF",
"DS", "DM", "DS", "DS", "DM", "DM", "DM", "NL", "DM", "DS", "DM",
"DM", "PP", "OT", "DM", "DS", "DS", "PP", "SS", "DS", "DS", "DS",
"DS", "OL", "DS", "DS", "DS", "NL", "PF", "DS", "PF", "DM", "DS",
"DM", "DO", "OT", "SS", "SS", "DS", "PE", "PF", "DS", "PF", "NL",
"OT", "DM", "PF", "PP", "OT", "DS", "PF", "DM", "NL", "PP", "DM",
"DS", "DM", "DM", "DM", "PF", "DS", "DS", "OT", "DM", "PF", "DM",
"DM", "PP", "DS", "DS", "DM", "PF", "OT", "DS", "OL", "PP", "DS",
"OL", "RM", "OT", "DS", "OT", "DS", "DM", "OT", "DS", "DM", "OT",
"NL", "OT", "DM", "DS", "DM", "DS", "DM", "DM", "NL", "PF", "OL",
"PF", "OL", "DS", "DS", "DS", "OT", "DO", "PF", "PE", "DM", "DM",
"DS", "OT", "OL", "OT", "DM", "NL", "DM", "OT", "OT", "DS", "DS",
"DS", "DS", "PF", "DS", "DM", "DS", "PF", "DS", "DM", "DM", "DS",
"DM", "DM", "OL", "OT", "DM", "OT", "OL", "OT", "DM", "OT", "DM",
"PP", "DM", "OT", "DM", "DM", "DS", "PE", "DS", "OT", "NL", "DS",
"OT", "OT", "PF", "DO", "DS", "DM", "OT", "DS", "DM", "DS", "DS",
"DM", "NL", "DO", "DM", "NL", "OL", "DM", "DS", "DS", "DS", "PF",
"PF", "DO", "DO", "OL", "NL", "DM", "DM", "DS", "OL", "DS", "DM",
"DM", "DS", "DO", "DM", "DO", "DM", "DS", "DM", "OT", "DM", "OT",
"DS", "DM", "DM", "DM", "DS", "DS", "DM", "DS", "DM", "DS", "DS",
"DS", "DO", "DM", "DM", "DM", "DM", "DS", "DM", "DM", "OT", "DM",
"DM", "DM", "DM", "OT", "DS", "DM", "DM", "DM", "DS", "DM", "DM",
"DM", "DO", "DM", "DM", "DM", "DO", "DM", "DM", "OT", "DM", "DS",
"PF", "OL", "DM", "DS", "OL", "NL", "DS", "DS", "DM", "DM", "OT",
"OL", "DM", "DS", "DS", "DM", "DS", "DM", "PF", "DM", "DS", "DS",
"OT", "OL", "DM", "DM", "DM", "DS", "DM", "OL", "DM", "DM", "PF",
"OL", "PF", "DM", "DM", "OT", "DO", "DO", "DS", "DM", "DM", "DM",
"DM", "DM", "NL", "OT", "OL", "DS", "OL", "NL", "PF", "DO", "OL",
"OT", "OL", "DS", "DM", "DS", "DM", "DM", "OT", "DM", "DS", "OL",
"DM", "DS", "OT", "DS", "DM", "DS", "PF", "DS", "DM", "DM", "DO",
"DM", "DO", "DM", "OT", "DM", "PF", "DS", "DM", "DS", "DM", "DO",
"DO", "DM", "DM", "DS", "DM", "DM", "DM", "DS", "DM", "DM", "DM",
"DS", "DS", "DM", "DO", "DM", "DM", "DM", "DM", "DM", "DM", "DS",
"DS", "DO", "DS", "DS", "DM", "DM", "DO", "DM", "DM", "DM", "DM",
"DM", "DS", "DS", "DM", "DM", "DS", "DM", "DM", "DM", "PM", "DM",
"DM", "DS", "DS", "DM", "DM", "OT", "PF", "NL", "NL", "DM", "DO",
"DS", "OL", "DM", "DM", "DM", "DM", "DM", "DS", "PF", "DS", "DS",
"DM", "DS", "DS", "OT", "DS", "NL", "DS", "DS", "DS", "DO", "OT",
"DM", "PF", "DM", "OL", "NL", "DM", "DM", "PE", "DM", "DM", "DM",
"PE", "DM", "DS", "DM", "NL", "DM", "NL", "DO", "DS", "DO", "DM",
"RM", "OL", "OT", "PF", "OL", "PP", "DS", "RM", "DS", "DO", "DS",
"DM", "OT", "DS", "DS", "OL", "OT", "DS", "DM", "DO", "OT", "DM",
"OL", "DS", "DS", "OT", "DM", "OL", "DO", "DM", "DM", "DM", "DO",
"OT", "DM", "DS", "DS", "DM", "DM", "DM", "NL", "DM", "DM", "DM",
"DM", "DS", "OT", "DS", "DS", "DM", "DS", "DO", "DS", "DO", "DM",
"DM", "DM", "PE", "PM", "DS", "DS", "DM", "DM", "DM", "DM", "DS",
"DM", "DM", "DO", "NL", "DS", "OL", "RM", "DM", "DM", "PF", "DS",
"NL", "DM", "OL", "DS", "DO", "DM", "PF", "DM", "DS", "DO", "DM",
"DM", "DO", "DM", "OL", "DM", "DS", "DS", "DM", "OL", "DM", "DM",
"DM", "DM", "DM", "OL", "DO", "DM", "PE", "NL", "OL", "NL", "PE",
"DS", "PE", "DS", "DS", "OL", "DS", "DM", "DS", "DS", "PF", "OL",
"DM", "PF", "RM", "PP", "DO", "DS", "DS", "DS", "DS", "RM", "NL",
"DM", "RM", "DM", "DS", "DM", "DM", "OL", "OT", "OL", "DM", "DS",
"DM", "DO", "DM", "DM", "DM", "DS", "DM", "PF", "DM", "DS", "DS",
"PF", "DM", "DO", "DS", "DM", "DM", "DS", "DO", "DO", "DS", "DO",
"DM", "DM", "DO", "DM", "DO", "DS", "DM", "DS", "DO", "DM", "NL",
"DO", "DM", "DO", "DS", "DS", "OL", "DM", "DO", "DS", "DM", "DM",
"DM", "DM", "DM", "DO", "PF", "DS", "DM", "OT", "RM", "OL", "DM",
"DS", "RM", "OT", "DS", "DM", "OT", "DS", "DM", "DO", "DM", "PF",
"DM", "DO", "DS", "PF", "OT", "DS", "DM", "DS", "DS", "DM", "DM",
"DS", "DS", "NL", "DO", "DM", "OT", "DS", "DS", "OT", "DM", "OT",
"PM", "DM", "OL", "DM", "DM", "DO", "DS", "DS", "DM", "DM", "OT",
"DM", "DS", "DS", "DM", "DM", "DM", "DO", "DS", "DM", "DM", "DM",
"DM", "DS", "DS", "DM", "DM", "DS", "OT", "OT", "DS", "DS", "DM",
"DM", "DS", "DS", "PF", "DM", "DS", "DM", "PE", "PF", "OL", "DM",
"DM", "DS", "OL", "DS", "DS", "OT", "DS", "NL", "DM", "DS", "PF",
"DS", "PF", "DS", "DM", "DM", "DM", "DM", "DM", "DS", "DM", "DM",
"DS", "DM", "DM", "DS", "PF", "DM", "DM", "DM", "DO", "OL", "DM",
"DO", "PF", "DS", "DM", "DM", "DS", "DM", "DM", "DM", "DO", "OL",
"DS", "DM", "DM", "DM", "DM", "DM", "DM", "OT", "PE", "DM", "DO",
"DM", "DO", "DM", "DM", "DM", "DM", "OL", "PF", "SS", "NL", "DM",
"DM", "PP", "SS", "OT", "PE", "DM", "DM", "DO", "DS", "DS", "DO",
"DM", "DM", "DM", "DM", "DM", "DM", "DS", "DS", "DM", "DS", "DS",
"DS", "DS", "OT", "DM", "DO", "DS", "DS", "DM", "DS", "DO", "DS",
"OL", "DS", "DM", "OL", "DM", "DS", "DS", "DM", "DM", "DM", "PM",
"DM", "DO", "DM", "PM", "DO", "DM", "DM", "DS", "OL", "DO", "DS",
"DS", "DS", "PF", "DS", "DO", "DM", "DS", "RM", "DS", "DM", "DM",
"OL", "DS", "DM", "DS", "DS", "DS", "DS", "NL", "DM", "DS", "PE",
"DM", "DS", "DS", "DM", "DM", "DM", "SS", "DM", "DS", "DS", "DM",
"DM", "DM", "DM", "DM", "DM", "DM", "DS", "DM", "DS", "DM", "DM",
"DS", "NL", "DM", "SS", "DS", "DM", "DM", "DS", "DO", "DS", "DS",
"DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "PF", "DM",
"DM", "DM", "DM", "OT", "PF", "DM", "OT", "DS", "DS", "DO", "DS",
"DM", "DM", "DS", "DS", "DO", "DO", "DM", "DM", "DM", "DS", "DM",
"DM", "DS", "DS", "PF", "DS", "DS", "DS", "DM", "DS", "DM", "DM",
"DO", "DS", "DM", "DO", "DM", "DO", "DS", "DM", "DS", "OL", "DO",
"DS", "DS", "DM", "DO", "DS", "DM", "DM", "DM", "DM", "DS", "OT",
"DO", "DS", "DM", "SS", "DM", "DM", "DM", "DO", "OL", "DM", "DM",
"DM", "DS", "DM", "OT", "DM", "DS", "DS", "DO", "DM", "DM", "DM",
"PM", "DM", "DM", "DO", "DS", "DM", "DS", "DO", "DS", "DS", "DO",
"OL", "DM", "DM", "DM", "DM", "DM", "DM", "DS", "DS", "DM", "DM",
"DM", "DO", "DS", "DO", "DS", "DS", "DM", "PF", "DM", "PE", "DM",
"DO", "DO", "DO", "PF", "DM", "DS", "DM", "PP", "DS", "DM", "DO",
"DM", "DS", "DM", "DS", "NL", "PM", "DM", "DS", "DM", "DS", "DS",
"DM", "DM", "OL", "DM", "PP", "DM", "OT", "DM", "DM", "DO", "DO",
"DM", "OT", "DO", "DS", "PE", "DM", "DM", "DM", "DM", "DM", "DO",
"DS", "DM", "DM", "DS", "DM", "DS", "DM", "DM", "DS", "DM", "DM",
"DS", "DO", "DM", "DS", "DM", "DM", "DS", "DM", "DS", "DM", "DS",
"DO", "PF", "OL", "DM", "PE", "DM", "PE", "DS", "DM", "PE", "PP",
"DS", "DM", "NL", "DS", "PM", "DM", "DS", "DS", "RM", "DM", "DM",
"DM", "DM", "DS", "DS", "DS", "DM", "DM", "DM", "DS", "DS", "DS",
"DM", "NL", "DM", "DS", "DM", "DS", "SS", "DM", "DO", "PF", "DM",
"DS", "OT", "DM", "OT", "DM", "NL", "DM", "DS", "DO", "DM", "DM",
"DM", "DM", "DM", "DM", "OT", "DO", "DM", "DM", "DM", "DO", "DS",
"DM", "DO", "DS", "DS", "DM", "DM", "DM", "DS", "DM", "DS", "OL",
"DM", "DS", "DM", "DS", "DM", "DS", "DS", "PF", "DS", "DM", "DM",
"DM", "DM", "DO", "PF", "DM", "DO", "DS", "DS", "PF", "DO", "DS",
"DS", "DO", "DS", "PF", "DS", "DM", "DO", "DO", "DS", "DS", "DM",
"PF", "DS", "DM", "DS", "DS", "DS", "DS", "DM", "DM", "PF", "DM",
"DM", "DM", "DS", "PM", "DM", "DM", "DM", "PF", "DM", "DS", "DM",
"DM", "DO", "NL", "DO", "DS", "DS", "DS", "DS", "DS", "DO", "DM",
"NL", "DS", "OL", "PP", "DS", "DO", "DS", "DS", "DM", "DO", "DM",
"DO", "DS", "DS", "DS", "PP", "PF", "PF", "PP", "DS", "DS", "RM",
"OT", "OL", "DS", "DS", "NL", "DM", "DS", "DM", "PM", "DS", "DM",
"DM", "DS", "DM", "DM", "DM", "DM", "DO", "DM", "PE", "DS", "DM",
"DM", "NL", "DM", "DM", "DM", "DS", "PP", "PE", "NL", "PF", "DM",
"DM", "DM", "DS", "DS", "DS", "DS", "OT", "DS", "DS", "DS", "DS",
"DM", "OT", "NL", "RM", "DS", "DS", "DS", "DO", "DS", "DM", "DM",
"DM", "DM", "DM", "DO", "DM", "DS", "DS", "DM", "PP", "DM", "NL",
"DM", "DM", "DM", "DM", "DO", "DM", "DM", "DM", "DS", "DM", "DM",
"DM", "NL", "DS", "DM", "PP", "DS", "DS", "NL", "OT", "DS", "DS",
"DS", "DO", "DM", "DM", "DO", "PF", "DM", "DS", "DM", "DO", "DM",
"DM", "DO", "PM", "DM", "DS", "DM", "DS", "NL", "DO", "SS", "DM",
"DM", "DM", "DS", "DS", "PF", "PF", "DS", "PF", "PF", "PF", "DM",
"DS", "DS", "DO", "NL", "DS", "DS", "DS", "DS", "DM", "DS", "DM",
"DS", "NL", "DM", "DO", "DM", "DS", "DM", "DM", "DS", "DM", "DM",
"PF", "DM", "DS", "DM", "NL", "DM", "DS", "OT", "PF", "OL", "DS",
"DS", "DS", "DM", "DS", "DS", "DM", "DM", "DS", "DS", "OL", "DO",
"DS", "DM", "NL", "DM", "PP", "PP", "OT", "DM", "DM", "DM", "OT",
"DM", "DM", "DS", "DS", "OT", "DO", "DM", "DM", "DM", "DM", "DM",
"DM", "DS", "PP", "PP", "DM", "DM", "DS", "PP", "DM", "DM", "DO",
"OL", "PF", "DO", "DM", "NL", "DM", "DM", "NL", "DM", "DM", "DS",
"DO", "DS", "DM", "DM", "DS", "DS", "DM", "DS", "DM", "DM", "DS",
"DO", "DS", "DM", "DM", "DO", "DM", "PP", "DS", "NL", "DO", "DM",
"DM", "DM", "DO", "DM", "DM", "DS", "DM", "DS", "DM", "NL", "PF",
"DM", "DM", "DS", "NL", "OT", "DO", "DM", "DM", "DS", "DM", "DO",
"PE", "DM", "DM", "DM", "DM", "DS", "OT", "DS", "DM", "DM", "DM",
"DM", "OL", "OT", "NL", "OL", "DM", "DM", "OT", "NL", "NL", "DS",
"DM", "DM", "DM", "DS", "DM", "DM", "NL", "PE", "PE", "OT", "DM",
"DS", "DM", "DM", "OT", "PE", "DS", "DS", "NL", "RM", "DS", "DO",
"DS", "DS", "DS", "DS", "OL", "DM", "PE", "DM", "OL", "SS", "NL",
"DM", "PE", "DM", "DM", "OL", "DM", "DM", "DM", "DM", "DM", "DM",
"DS", "OL", "DM", "OT", "DM", "PM", "PE", "DM", "OT", "PE", "OL",
"OT", "OL", "DM", "NL", "OT", "DM", "OT", "DM", "DS", "DM", "OL",
"NL", "OT", "OT", "PE", "DM", "DM", "PE", "DS", "DM", "NL", "PF",
"PF", "DM", "DM", "DS", "OL", "DM", "DM", "DM", "DM", "DS", "NL",
"DM", "PP", "DO", "OT", "NL", "DM", "PF", "DO", "DS", "PP", "DS",
"DO", "DS", "NL", "DS", "DM", "DM", "DM", "DM", "DS", "OT", "DS",
"OT", "PE", "OT", "DM", "NL", "DM", "DM", "DS", "RM", "PE", "PF",
"DM", "DM", "PE", "OT", "DM", "NL", "DS", "DM", "DM", "DM", "OT",
"DS", "DM", "DS", "DO", "OT", "PE", "NL", "OL", "DM", "DM", "NL",
"DM", "PM", "OL", "DM", "OL", "DS", "DM", "DS", "OT", "DM", "DS",
"OT", "DM", "DM", "PM", "RM", "DM", "RM", "DS", "DM", "OL", "DM",
"DM", "OT", "DM", "OT", "PF", "DM", "DM", "NL", "DM", "DM", "DS",
"DS", "DS", "DM", "RM", "DM", "DO", "DO", "DM", "NL", "DM", "DM",
"DM", "DO", "NL", "DS", "DO", "DM", "DM", "DS", "DM", "NL", "OL",
"DM", "DM", "DS", "PF", "DM", "DM", "DS", "DM", "PF", "OL", "DO",
"RM", "DS", "DM", "DS", "DM", "PF", "DM", "DM", "NL", "DM", "PE",
"DM", "DM", "PE", "DS", "PE", "DM", "DS", "DS", "PE", "PF", "RM",
"PM", "DS", "PE", "DM", "PF", "RM", "RM", "PE", "DM", "RM", "DS",
"RM", "RM", "PE", "DS", "DM", "PF", "DS", "RM", "DM", "RM", "NL",
"PE", "PM", "DM", "DS", "DM", "PF", "PM", "RM", "PE", "NL", "NL",
"DM", "DM", "DS", "DS", "DM", "RM", "DM", "DM", "DS", "NL", "DM",
"DO", "PE", "DM", "PF", "PE", "NL", "DM", "PF", "OL", "DM", "PE",
"DS", "DM", "RM", "DS", "DS", "DM", "DM", "OT", "PE", "DM", "DM",
"DO", "OT", "DO", "DS", "DM", "DM", "DM", "DO", "DM", "RM", "NL",
"RM", "NL", "DS", "PF", "DM", "DM", "DS", "DM", "DS", "DS", "DS",
"DS", "PM", "DM", "RM", "DO", "PE", "DO", "NL", "DM", "RM", "DM",
"PE", "DM", "DM", "OL", "RM", "DO", "RM", "DM", "PE", "DM", "DM",
"NL", "PE", "DS", "DM", "DM", "PE", "NL", "PF", "DM", "DO", "DO",
"DO", "DM", "DM", "RM", "RM", "PE", "DS", "PM", "DS", "RM", "NL",
"DM", "DM", "DM", "RM", "PE", "DM", "DM", "RM", "RM", "DS", "DO",
"DS", "PM", "DM", "PM", "DM", "DM", "DO", "RM", "NL", "RM", "DS",
"RM", "RM", "DM", "PF", "DM", "DM", "PF", "DM", "DO", "OT", "DM",
"PE", "DO", "DM", "DM", "OT", "OT", "DM", "RM", "DM", "NL", "DM",
"PE", "DS", "OT", "DM", "PE", "DM", "OL", "NL", "DM", "DM", "PE",
"PF", "PE", "DS", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "PF",
"PF", "OL", "DM", "PE", "RM", "DS", "OL", "PF", "NL", "PF", "PE",
"DM", "DS", "OT", "OL", "RM", "DM", "OL", "DM", "OL", "RM", "RM",
"DM", "DM", "DM", "DM", "DM", "PE", "PE", "PE", "DM", "PE", "DS",
"RM", "RM", "PM", "PF", "DM", "DM", "DM", "DO", "DM", "DS", "NL",
"PE", "DM", "DS", "RM", "PE", "NL", "PE", "PF", "DS", "DM", "NL",
"PM", "PE", "PM", "RM", "DS", "DM", "RM", "RM", "DM", "RM", "PF",
"DM", "PF", "DM", "DO", "DS", "DO", "DM", "DM", "DS", "DM", "PE",
"DM", "NL", "RM", "PF", "RM", "RM", "RM", "RM", "RM", "DM", "RM",
"DM", "RM", "DM", "PE", "DM", "NL", "PF", "DM", "DM", "DM", "DS",
"RM", "DM", "PF", "PF", "OL", "NL", "NL", "RM", "NL", "PE", "DM",
"PE", "DM", "OL", "RM", "RM", "DO", "DM", "DS", "DM", "DO", "DM",
"RM", "DM", "DM", "DM", "DM", "DM", "RM", "RM", "DM", "DS", "DM",
"DS", "PE", "PF", "RM", "DS", "RM", "OL", "PF", "OL", "RM", "DM",
"RM", "RM", "DM", "DS", "DM", "DM", "DM", "DM", "RM", "RM", "DM",
"DM", "DM", "DS", "DM", "RM", "OT", "OL", "DM", "NL", "DM", "DM",
"DM", "DM", "DS", "OT", "PE", "RM", "DS", "PE", "RM", "DS", "DS",
"DS", "PE", "DS", "DO", "DS", "RM", "DO", "DS", "PE", "DM", "DO",
"DM", "PE", "NL", "DS", "PE", "RM", "PE", "DS", "DO", "PE", "DS",
"OL", "DM", "RM", "DM", "DS", "OT", "RM", "OL", "DM", "OL", "PE",
"RM", "OL", "DO", "DS", "PF", "DS", "DM", "DM", "NL", "DS", "OT",
"RM", "DM", "RM", "DS", "RM", "RM", "RM", "RM", "PM", "RM", "DM",
"DS", "DM", "PE", "RM", "PE", "PM", "DS", "PF", "SS", "RM", "RM",
"PE", "RM", "PF", "PE", "DO", "DM", "RM", "NL", "OL", "DM", "DM",
"PF", "DM", "NL", "DS", "PE", "RM", "PE", "DM", "RM", "RM", "RM",
"PM", "PF", "DM", "DO", "DM", "PM", "DO", "DM", "PM", "PM", "RM",
"PM", "RM", "PM", "RM", "NL", "DM", "DO", "PF", "DS", "PF", "DM",
"DM", "RM", "DM", "RM", "DS", "RM", "PM", "PP", "DM", "DM", "PE",
"PE", "DM", "RM", "DM", "DS", "DM", "NL", "DO", "DO", "DM", "DO",
"NL", "DM", "PF", "DM", "DM", "DM", "PF", "DM", "DM", "DS", "DM",
"DS", "DS", "DM", "OT", "OT", "DM", "DS", "PE", "DM", "NL", "DM",
"DS", "DS", "OL", "PM", "OL", "DS", "DS", "RM", "DM", "RM", "RM",
"RM", "DO", "DM", "DS", "PF", "PP", "DM", "RM", "OT", "RM", "PM",
"DM", "DS", "RM", "DS", "DM", "DS", "DM", "RM", "RM", "DM", "DM",
"DM", "DM", "DS", "OT", "DM", "DM", "DS", "RM", "DS", "DM", "PE",
"DO", "DM", "PM", "OL", "OT", "RM", "DS", "PM", "DM", "PP", "PE",
"RM", "DS", "SS", "PE", "PM", "DM", "DM", "DO", "DS", "NL", "DO",
"DS", "DS", "PP", "DS", "DS", "PF", "DM", "DM", "PE", "RM", "DM",
"PM", "DM", "PE", "PF", "DM", "DS", "PE", "DO", "RM", "PE", "DS",
"DM", "DM", "DO", "DM", "DS", "PM", "DM", "RM", "OT", "DS", "DM",
"DS", "PE", "NL", "PM", "DS", "RM", "DM", "DM", "PE", "DO", "DM",
"RM", "DO", "DM", "DM", "DS", "DM", "DM", "RM", "DS", "PP", "DM",
"PM", "RF", "DS", "DM", "DS", "NL", "DS", "RM", "NL", "DS", "DM",
"PM", "DS", "DS", "DS", "DM", "PM", "PF", "RM", "NL", "DM", "DS",
"RM", "DS", "DS", "DO", "DS", "PM", "PE", "DO", "DO", "NL", "DS",
"DS", "DS", "RM", "OL", "DS", "DS", "DM", "DM", "RM", "RM", "DS",
"DS", "DM", "DM", "PF", "DO", "DM", "DM", "DS", "DS", "PE", "DS",
"DM", "PF", "DM", "DS", "DS", "DM", "PF", "PE", "PM", "OT", "DS",
"DS", "DS", "PF", "NL", "NL", "NL", "DM", "DM", "RM", "DM", "PE",
"DM", "DS", "NL", "SH", "DS", "PF", "RM", "DM", "DS", "DO", "DS",
"DM", "DS", "DS", "DS", "DS", "DS", "PM", "PF", "SS", "DM", "DO",
"DS", "DS", "DM", "DM", "DM", "NL", "DM", "PP", "RM", "DS", "PE",
"DM", "DS", "DM", "DM", "RM", "DM", "DS", "PM", "NL", "RM", "DM",
"PM", "DS", "RM", "DS", "DM", "PE", "DM", "PE", "DM", "DS", "DM",
"NL", "DS", "OT", "DM", "OT", "PP", "OT", "DM", "RM", "OL", "DM",
"DS", "PF", "PE", "DM", "PE", "DM", "NL", "DS", "NL", "RM", "PF",
"RM", "DO", "OT", "DS", "RM", "NL", "DS", "DM", "DS", "DS", "DM",
"DS", "DS", "NL", "DO", "OL", "DO", "DM", "PE", "PF", "DO", "OL",
"DM", "DS", "DM", "DS", "DS", "DS", "DM", "DO", "DM", "PE", "DS",
"DM", "DS", "DM", "DS", "PE", "PE", "PF", "RM", "NL", "PP", "DS",
"OT", "DM", "DM", "DM", "OL", "DM", "DS", "DM", "DS", "DM", "DM",
"OL", "NL", "OL", "DM", "RM", "RM", "DM", "PE", "PF", "PF", "PF",
"DM", "PF", "RM", "OT", "NL", "DS", "DO", "SS", "NL", "DS", "DS",
"PM", "DS", "DS", "DS", "DM", "DM", "DS", "NL", "PF", "DM", "RM",
"PF", "PF", "DM", "DO", "DS", "SS", "PE", "NL", "DM", "NL", "NL",
"DS", "PF", "DM", "DS", "PF", "DM", "PF", "PM", "DM", "DS", "DM",
"PE", "NL", "DS", "PE", "DS", "DS", "DM", "PE", "DS", "NL", "DM",
"PF", "DO", "DM", "DS", "DM", "RM", "DS", "DM", "DM", "OT", "NL",
"DM", "NL", "DS", "DM", "DO", "RM", "DS", "OT", "PP", "OT", "DS",
"PF", "DM", "PE", "DO", "PE", "DM", "RM", "DS", "DS", "PE", "PP",
"SH", "RM", "DS", "DM", "DS", "DS", "DM", "PM", "DM", "PM", "PE",
"RM", "DM", "DS", "DM", "SS", "DM", "DM", "DS", "DO", "PM", "RM",
"DO", "DS", "NL", "DS", "DM", "DM", "OT", "NL", "DS", "DM", "NL",
"DS", "DS", "DM", "DM", "NL", "OL", "PF", "DS", "PP", "DM", "DM",
"DS", "DM", "PF", "PF", "DM", "DM", "DS", "DM", "PE", "PM", "PP",
"DS", "DS", "DS", "DM", "DM", "DO", "OT", "DM", "OL", "DM", "OL",
"DO", "PP", "DS", "DS", "OL", "OL", "DM", "DS", "PP", "OT", "PE",
"DS", "DO", "OL", "DM", "OT", "DS", "OT", "DM", "DS", "NL", "PF",
"PP", "DM", "NL", "OT", "OT", "DS", "DM", "DS", "PF", "OT", "PF",
"DS", "DM", "DO", "PF", "DM", "PE", "NL", "DM", "DS", "OL", "DM",
"DS", "DM", "DS", "PF", "DM", "DM", "DS", "PM", "DS", "DO", "NL",
"DS", "OL", "PF", "PF", "DS", "DS", "DO", "DM", "DS", "DM", "PE",
"PE", "DM", "DS", "RM", "DM", "NL", "DS", "DM", "DO", "NL", "DM",
"PM", "DM", "OT", "PP", "DM", "DS", "DS", "DS", "DM", "PM", "NL",
"DM", "DM", "NL", "NL", "DS", "DS", "PP", "PF", "DM", "PF", "DO",
"DM", "PP", "DM", "PF", "PM", "RM", "DM", "DM", "PF", "DM", "SS",
"DM", "DM", "DM", "DM", "NL", "DM", "OT", "PF", "PF", "DM", "NL",
"DM", "DM", "DS", "DO", "DM", "DM", "DS", "PM", "DS", "NL", "NL",
"PF", "NL", "OT", "DS", "PM", "DM", "DM", "DM", "DM", "NL", "PM",
"PP", "DO", "NL", "RM", "DS", "RM", "DS", "DS", "DS", "PM", "PF",
"DS", "PF", "PF", "PF", "DS", "DM", "NL", "PE", "PE", "NL", "NL",
"PF", "OT", "PE", "PE", "DS", "DM", "OT", "PM", "DS", "PE", "DS",
"DM", "PM", "OT", "PM", "DS", "RM", "DM", "DM", "DO", "DS", "DM",
"PE", "PP", "DS", "DM", "DO", "PP", "DM", "PF", "PF", "PM", "OT",
"DM", "DS", "DS", "SS", "PF", "NL", "DM", "OL", "DM", "PP", "DM",
"DM", "PM", "DM", "DS", "DM", "DM", "OL", "RM", "DM", "DM", "DS",
"DM", "PP", "OT", "PF", "DM", "NL", "DS", "DS", "OT", "NL", "DM",
"DO", "PM", "PF", "RM", "DM", "OT", "DS", "DM", "NL", "PF", "DS",
"DM", "PM", "DM", "DM", "DM", "DS", "DM", "PE", "DS", "DO", "PM",
"DS", "DM", "DS", "RM", "OT", "DM", "PE", "PF", "NL", "DM", "PM",
"DM", "PF", "DO", "PF", "PE", "DM", "PP", "DS", "NL", "DS", "DM",
"PM", "DM", "DS", "PP", "DM", "DS", "RM", "DM", "DM", "DS", "DM",
"PF", "PE", "DM", "PE", "PF", "DS", "PF", "PF", "DM", "DM", "PF",
"PF", "PP", "DO", "DO", "DM", "SS", "DM", "DM", "DM", "DM", "DS",
"DM", "DM", "NL", "DS", "DO", "NL", "RM", "DM", "DM", "PM", "DM",
"PF", "DS", "DS", "NL", "PF", "NL", "DM", "DS", "DM", "DM", "PE",
"DS", "DM", "DM", "NL", "DM", "RM", "DS", "DS", "PP", "OL", "PF",
"DO", "NL", "OL", "RM", "DM", "OT", "OT", "NL", "DM", "DM", "PF",
"OL", "DM", "DM", "PF", "DM", "PP", "DM", "DS", "OT", "DM", "DS",
"DM", "DS", "DM", "DM", "DS", "OT", "PE", "DS", "DM", "DS", "DM",
"NL", "OL", "OT", "DM", "DM", "DM", "DS", "DO", "DM", "DM", "DM",
"NL", "OL", "DM", "DS", "DM", "DS", "DS", "OT", "PM", "SS", "OL",
"DM", "DM", "DM", "DS", "SS", "DS", "DS", "DS", "DS", "OT", "PF",
"DM", "PP", "DM", "OT", "DO", "OT", "DM", "DS", "DM", "DM", "DM",
"DS", "DO", "DM", "PF", "DM", "OT", "OL", "DM", "DM", "DM", "PM",
"DO", "OT", "DM", "PE", "DM", "OX", "DM", "DM", "OT", "OT", "PP",
"DM", "OL", "PM", "PF", "DS", "PF", "DO", "DM", "DO", "DM", "PE",
"DM", "PF", "PF", "DM", "DM", "OT", "PF", "NL", "PP", "DM", "PM",
"DM", "DO", "PF", "NL", "OT", "DS", "DM", "DS", "DM", "DS", "OT",
"DS", "PF", "PM", "OL", "DM", "PP", "OT", "DM", "OL", "OL", "DM",
"DM", "DM", "OT", "NL", "DM", "DS", "DM", "DM", "DM", "DM", "OL",
"DM", "DS", "DM", "PF", "DM", "PF", "OT", "PF", "OL", "DM", "DS",
"DO", "PM", "NL", "OL", "OT", "DO", "OT", "DM", "DM", "DS", "DO",
"OL", "DM", "OL", "DM", "DM", "PF", "PF", "DM", "OL", "OT", "RM",
"DM", "DM", "DM", "DM", "DS", "PF", "DM", "PF", "DM", "DM", "DM",
"DO", "OL", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DS", "DS",
"PM", "PF", "DM", "DO", "DS", "OL", "DM", "PF", "PF", "DO", "NL",
"DS", "PE", "PF", "DM", "DM", "DM", "DM", "OL", "DM", "DM", "DS",
"PF", "SS", "DS", "DM", "PF", "DS", "NL", "OL", "OT", "DM", "PF",
"DO", "OL", "DS", "DS", "DO", "DS", "DS", "PF", "OT", "OT", "PM",
"PF", "OL", "OL", "DM", "DM", "DM", "DS", "DM", "DM", "DO", "PF",
"DS", "DM", "DM", "DM", "DM", "DS", "DM", "OT", "DM", "OL", "OL",
"OT", "PM", "DS", "PM", "DS", "DO", "DM", "PE", "OL", "DM", "PE",
"DO", "OT", "PE", "DO", "OT", "DM", "DM", "DS", "DS", "DO", "DM",
"OL", "DS", "DM", "DM", "DO", "DM", "DM", "DS", "DM", "DM", "DM",
"DS", "DM", "DM", "DM", "OL", "DM", "PM", "DM", "DM", "DS", "DM",
"DS", "RM", "OT", "OT", "DM", "PE", "DS", "DS", "DM", "DS", "DS",
"DS", "OT", "DO", "DM", "DM", "DS", "DS", "DM", "DM", "PF", "DM",
"DS", "DS", "DM", "PF", "PF", "DS", "RM", "DO", "DS", "DM", "DM",
"DM", "DS", "OT", "DS", "DM", "DS", "OT", "DM", "DM", "DS", "NL",
"RM", "DS", "DM", "DM", "DS", "PF", "DM", "DM", "OT", "DS", "PF",
"OT", "DM", "DM", "OT", "NL", "DM", "DS", "OL", "DS", "DM", "OT",
"OT", "DO", "DS", "DM", "OL", "PE", "DM", "OT", "DO", "DS", "DM",
"DM", "DS", "DS", "DM", "DM", "DM", "DS", "OL", "DM", "DM", "DM",
"DM", "DM", "OT", "OT", "PF", "PE", "DM", "DS", "DM", "DS", "OL",
"DM", "DM", "DM", "OT", "DM", "DM", "DM", "DM", "DO", "DM", "DS",
"DO", "DS", "DM", "DM", "DS", "DO", "OL", "OT", "DM", "RM", "DS",
"OL", "DM", "NL", "DM", "DM", "OL", "PF", "DM", "OL", "RM", "DO",
"DS", "DM", "DM", "PE", "RM", "DO", "DM", "OT", "DM", "DS", "DS",
"PM", "PF", "DM", "DM", "DS", "OT", "OT", "DM", "OL", "DM", "PE",
"DM", "DM", "DM", "DM", "PF", "RM", "PF", "PF", "PM", "DM", "PF",
"DM", "PF", "DM", "DS", "DM", "DM", "RM", "DM", "PF", "DS", "DS",
"DM", "RM", "DM", "RM", "NL", "AH", "RM", "DM", "DM", "NL", "DO",
"DS", "PM", "OL", "RF", "NL", "RM", "DM", "DM", "DM", "PF", "PF",
"PF", "PF", "DO", "DS", "DS", "DS", "DM", "DO", "PF", "DS", "DO",
"NL", "DS", "DS", "NL", "DM", "NL", "OT", "NL", "DM", "DM", "DM",
"PF", "DO", "DS", "DM", "DO", "DO", "DM", "DS", "PF", "DO", "DM",
"OL", "DO", "DM", "NL", "RM", "DM", "DM", "PM", "DM", "RM", "PF",
"PF", "OL", "PE", "DM", "DM", "PE", "PF", "RM", "PF", "DM", "DS",
"DM", "DM", "DM", "DO", "DM", "DM", "OL", "OL", "DM", "DM", "DS",
"DO", "PF", "DS", "PF", "PF", "DO", "DS", "DS", "OL", "DO", "DM",
"OL", "DO", "DM", "DS", "PF", "DM", "PF", "DS", "DM", "OL", "DM",
"DS", "DM", "OT", "DM", "DM", "OT", "DM", "DO", "DM", "DM", "PM",
"DM", "NL", "DM", "DM", "NL", "DM", "DM", "PF", "DS", "PM", "RM",
"DS", "DO", "RM", "DO", "OL", "OL", "DS", "OL", "RM", "OL", "DS",
"DM", "RM", "DM", "DM", "DM", "OL", "DM", "OT", "DM", "RM", "OL",
"DM", "DM", "DM", "PM", "DS", "PM", "DM", "RM", "DS", "DM", "RM",
"OT", "DM", "RM", "NL", "PF", "DO", "RM", "RM", "DM", "DM", "PF",
"DM", "PF", "DM", "OL", "RM", "RM", "PM", "DM", "DS", "DS", "DM",
"DM", "RM", "RM", "DM", "DM", "DM", "DM", "RM", "DS", "RM", "OT",
"OL", "RM", "DM", "DM", "RM", "DM", "DM", "OL", "DO", "DM", "DO",
"DM", "RM", "DM", "DO", "OL", "DO", "DO", "DO", "PF", "DM", "DM",
"DM", "DO", "DM", "DS", "DO", "DO", "DO", "DM", "DM", "PF", "DM",
"DS", "DM", "OT", "DM", "DM", "PF", "DM", "PF", "PF", "DO", "DM",
"DM", "DM", "DO", "DO", "DM", "DS", "DM", "DM", "DO", "DS", "DM",
"DS", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DM", "DS",
"PF", "DS", "DO", "OL", "DM", "DM", "DM", "DM", "DM", "PE", "DS",
"PM", "DS", "DM", "DM", "DO", "RM", "OT", "DM", "DO", "OL", "DM",
"RM", "OL", "DM", "DM", "OT", "DO", "DO", "DM", "DS", "OT", "OT",
"RM", "RM", "DM", "OL", "DM", "DO", "OL", "DM", "RM", "DM", "PF",
"DO", "DM", "OT", "DM", "DS", "PM", "DM", "NL", "DM", "DO", "RM",
"DM", "DM", "DM", "RM", "DM", "DM", "PE", "OL", "RM", "DS", "DO",
"RM", "DO", "DM", "OL", "DO", "DS", "DM", "DO", "DM", "DO", "RM",
"DM", "DM", "RM", "DM", "RM", "RM", "DM", "PF", "DM", "DS", "DM",
"DM", "RM", "DO", "DM", "DO", "DM", "DS", "OL", "DO", "DO", "DM",
"DM", "OT", "DM", "DM", "PM", "DO", "PF", "DS", "PE", "DM", "DM",
"DM", "PF", "OL", "RM", "DM", "DM", "DS", "DM", "RM", "DM", "DM",
"PF", "DM", "OL", "DM", "DS", "SS", "DM", "OT", "PE", "DM", "DM",
"DM", "DM", "DO", "DM", "RM", "DS", "DM", "SS", "RM", "DM", "DM",
"RM", "RM", "RM", "DM", "RM", "DS", "RM", "PF", "DS", "RM", "DM",
"DM", "PF", "DM", "RM", "RM", "RM", "DS", "DS", "DM", "DS", "PF",
"RM", "DO", "RM", "PM", "RM", "OL", "RM", "DM", "DO", "PF", "RM",
"DM", "DM", "PF", "DM", "DM", "DO", "DM", "PE", "DS", "DM", "RM",
"DM", "DM", "DM", "OT", "RM", "DM", "SH", "OL", "DM", "OL", "OT",
"RM", "PF", "DM", "RM", "DM", "RM", "DM", "DS", "PF", "RM", "DM",
"DM", "DM", "DO", "DM", "RM", "DM", "DS", "RM", "DM", "DS", "DM",
"RM", "DO", "DS", "DM", "OT", "DM", "DM", "DM", "DO", "OL", "PF",
"PF", "PF", "DM", "DM", "DO", "OL", "OT", "DM", "DO", "DO", "DM",
"DO", "DO", "DS", "DO", "DO", "PF", "PF", "RM", "RM", "OL", "PF",
"DS", "DS", "DM", "DM", "OL", "PE", "DO", "DS", "PF", "DM", "RM",
"DO", "RM", "DM", "DS", "PF", "DO", "OL", "PF", "DM", "PF", "DM",
"PF", "PF", "DS", "DM", "DM", "PF", "DO", "DS", "OL", "PE", "DM",
"DO", "OL", "DM", "DM", "DM", "RM", "PF", "DS", "DM", "PF", "DM",
"DM", "DM", "DM", "DM", "DS", "DM", "OL", "DM", "OT", "DM", "RM",
"DM", "DM", "PE", "RM", "DO", "DS", "PF", "PF", "DM", "PP", "DO",
"NL", "AH", "DS", "RM", "OL", "NL", "PF", "DM", "DO", "RM", "DO",
"DS", "DS", "RM", "DS", "RM", "PF", "DO", "PF", "DM", "DS", "DM",
"DS", "DS", "DS", "DM", "RM", "RM", "DM", "DM", "DM", "DS", "PM",
"DM", "DM", "DM", "DM", "SH", "DS", "DM", "DS", "DM", "RM", "PE",
"OL", "NL", "RM", "RM", "DM", "RM", "DM", "DM", "DS", "PF", "DM",
"DM", "PF", "OL", "DM", "DM", "PF", "PE", "PF", "PF", "DM", "DS",
"DS", "PE", "DM", "DO", "DM", "PE", "DO", "PF", "DS", "DS", "DS",
"RM", "DM", "PF", "PF", "PF", "DM", "DS", "PE", "DS", "DM", "DO",
"DS", "DO", "DM", "PF", "DM", "DS", "RM", "DS", "DS", "PE", "DM",
"DO", "DM", "PF", "DM", "PF", "PF", "DS", "PF", "DO", "PF", "DS",
"DS", "DM", "PF", "PE", "PM", "DO", "RM", "PP", "DS", "PM", "DM",
"DM", "PF", "DS", "PF", "DS", "DM", "PF", "DS", "DS", "RM", "DM",
"PF", "RM", "DS", "OL", "DO", "DS", "DM", "PF", "DS", "PE", "DM",
"PM", "PF", "DS", "RM", "DM", "DS", "DM", "DO", "DM", "DM", "PP",
"DS", "PF", "DM", "RM", "PE", "RM", "DM", "PE", "DS", "PE", "DS",
"RM", "PP", "DS", "DM", "DM", "OT", "DS", "DS", "PF", "PF", "DO",
"DM", "DS", "DM", "RM", "PF", "OT", "DO", "PE", "DM", "DS", "PE",
"DS", "DS", "PM", "DM", "DM", "PM", "OT", "DM", "OT", "DM", "RM",
"DS", "DM", "RM", "DS", "NL", "DM", "NL", "PE", "DM", "PE", "RM",
"DO", "NL", "PE", "DS", "DS", "DM", "RM", "DM", "PF", "PM", "DM",
"PE", "RM", "PP", "DM", "OT", "DS", "DS", "DM", "DO", "PE", "DM",
"PF", "PF", "DM", "PF", "PE", "DS", "DM", "OT", "DS", "DS", "DM",
"PF", "DS", "DS", "DM", "PP", "OT", "DM", "NL", "DM", "PE", "DS",
"PF", "PF", "NL", "DS", "DS", "DS", "PF", "RM", "DS", "PF", "PP",
"DO", "OT", "DS", "DS", "DM", "DM", "DM", "DM", "RM", "DS", "DM",
"DM", "RM", "DM", "RM", "RM", "OT", "DS", "DM", "PF", "DM", "DM",
"DM", "DO", "DO", "NL", "PP", "DS", "DS", "DS", "PM", "DO", "PM",
"DS", "DM", "DO", "DO", "NL", "DM", "DS", "DO", "DO", "RM", "NL",
"DS", "DM", "PE", "NL", "PE", "DM", "DO", "DS", "PM", "DM", "PF",
"NL", "OT", "DM", "OT", "DM", "DO", "DM", "OT", "DM", "DO", "DS",
"PF", "DM", "DM", "DM", "DS", "RM", "DS", "OT", "PF", "DM", "DS",
"DM", "NL", "OT", "PP", "DM", "OL", "SS", "DS", "DS", "NL", "DM",
"DS", "DS", "DM", "PF", "DM", "DM", "DO", "DO", "OT", "PF", "DO",
"OT", "DS", "DS", "SS", "PP", "DS", "NL", "DM", "PF", "PF", "PF",
"DO", "DS", "DM", "DS", "OL", "NL", "PF", "DS", "DS", "PF", "DS",
"DM", "DM", "DS", "DM", "DS", "OL", "DO", "DS", "DM", "DO", "DM",
"OL", "DS", "DM", "DM", "DM", "PP", "DM", "OT", "PF", "DM", "NL",
"NL", "DS", "DM", "DO", "PM", "DM", "DO", "DS", "DM", "DS", "DM",
"RM", "NL", "DM", "DM", "DM", "PF", "NL", "PM", "DO", "OT", "DM",
"PM", "DM", "OT", "DS", "RM", "DO", "PM", "PF", "DO", "DO", "DS",
"DM", "DM", "DM", "PP", "DS", "OT", "PF", "DS", "NL", "DS", "DM",
"DM", "SS", "NL", "OT", "NL", "DM", "DM", "OL", "DM", "RM", "DO",
"DM", "DM", "OT", "DO", "DS", "DM", "DM", "DM", "OT", "PF", "NL",
"OL", "DS", "PP", "DM", "PF", "PP", "DM", "DO", "OL", "PP", "SS",
"NL", "DM", "DS", "NL", "OL", "DO", "DM", "OT", "DM", "RM", "DM",
"DS", "DS", "DM", "PM", "DM", "DS", "DS", "PP", "NL", "PP", "NL",
"DM", "DO", "NL", "DS", "DM", "DS", "DM", "OT", "DS", "DM", "DX",
"NL", "DS", "OT", "DM", "DM", "DM", "DM", "DO", "DM", "DO", "DM",
"DO", "DS", "PM", "DM", "DM", "DM", "DO", "NL", "DM", "DM", "PP",
"DM", "PE", "DM", "DM", "DM", "PP", "NL", "DM", "OT", "OT", "NL",
"NL", "DM", "DO", "DS", "OT", "DS", "NL", "NL", "PP", "OL", "DO",
"DM", "PF", "DO", "OL", "PF", "DS", "SS", "PF", "RM", "DM", "DS",
"PF", "OT", "DS", "NL", "DM", "DM", "OT", "DM", "DM", "DM", "PF",
"DS", "DM", "DS", "OT", "DM", "PM", "DM", "NL", "DM", "DS", "DS",
"PP", "DM", "PF", "PP", "OT", "PF", "DS", "PP", "DM", "DM", "PP",
"NL", "DM", "NL", "DM", "DS", "DM", "DM", "DS", "NL", "DS", "DM",
"DM", "PM", "NL", "DO", "NL", "DS", "DO", "PP", "DM", "NL", "DM",
"NL", "NL", "DM", "DS", "NL", "DO", "DS", "NL", "PF", "DM", "DO",
"DM", "DM", "PE", "DO", "DS", "DS", "SS", "DM", "DM", "RM", "DS",
"PE", "DM", "DM", "NL", "DM", "SS", "DM", "DM", "DM", "NL", "NL",
"DO", "NL", "PM", "DM", "DM", "OT", "DS", "DO", "DM", "DM", "OT",
"NL", "PF", "DM", "OL", "DO", "OL", "DS", "DS", "SS", "DS", "DS",
"RM", "DM", "PP", "PP", "DO", "PF", "DO", "DS", "DM", "NL", "DS",
"DM", "DS", "DM", "DO", "NL", "DM", "DM", "DM", "RM", "DS", "DM",
"DS", "OT", "DS", "DO", "DM", "NL", "RM", "NL", "DM", "OL", "DS",
"PF", "PF", "DS", "SS", "NL", "DS", "DS", "OT", "DM", "DO", "PM",
"NL", "DM", "DM", "PF", "NL", "DM", "PP", "DO", "DM", "PP", "PP",
"DO", "NL", "DM", "OL", "NL", "DS", "DS", "DM", "DS", "DM", "DS",
"SS", "DM", "DS", "PM", "DS", "OL", "PF", "NL", "PF", "DS", "NL",
"RM", "DS", "DM", "DO", "DM", "DM", "DS", "DS", "DM", "DO", "DS",
"OL", "DM", "NL", "RM", "DO", "DM", "DS", "OT", "OT", "OT", "DS",
"PM", "DM", "DM", "DM", "NL", "DM", "DM", "OT", "DM", "DM", "PF",
"DO", "DO", "PE", "PE", "DS", "DS", "DM", "NL", "DM", "DM", "OT",
"DS", "NL", "DO", "DM", "DM", "NL", "DS", "DS", "NL", "DM", "OT",
"OT", "DS", "DO", "DO", "DM", "DS", "DM", "NL", "DS", "DS", "OT",
"DM", "NL", "DO", "DM", "DO", "OT", "DM", "DM", "DM", "DS", "DS",
"DM", "DS", "NL", "DS", "NL", "DS", "DM", "DM", "RM", "DM", "DO",
"DM", "DM", "DS", "DM", "PM", "OT", "DS", "DO", "DO", "DM", "DM",
"DS", "DO", "DM", "DM", "DM", "DS", "DS", "DS", "DS", "NL", "PP",
"OL", "DM", "DM", "DM", "DS", "DO", "DS", "DM", "DM", "NL", "DM",
"DM", "OT", "OT", "PF", "DS", "NL", "DS", "DM", "NL", "DM", "OT",
"DS", "DS", "DM", "OT", "DS", "DM", "DM", "RM", "OT", "PM", "DO",
"OL", "DO", "OT", "RM", "DO", "OT", "DS", "PM", "RM", "DO", "DO",
"DM", "OL", "DS", "DO", "RM", "DM", "DM", "OT", "DM", "DM", "DO",
"DS", "DM", "OL", "DO", "DM", "DM", "OT", "DS", "DO", "DM", "RM",
"DM", "PF", "DO", "DS", "DM", "OT", "DM", "DM", "DM", "DM", "NL",
"DS", "DS", "NL", "PF", "DS", "DS", "RM", "DM", "DS", "DM", "DS",
"OT", "DO", "DM", "NL", "OL", "DS", "DM", "DM", "AH", "DS", "PM",
"PM", "PP", "DO", "DS", "PM", "DO", "OT", "DM", "NL", "DM", "DS",
"OL", "DM", "NL", "DM", "DS", "DM", "DM", "DO", "DS", "RM", "RM",
"DM", "DM", "NL", "DM", "OT", "DM", "DM", "DM", "DS", "NL", "DO",
"PM", "DM", "OL", "DM", "DS", "DS", "DO", "DM", "DM", "OT", "DS",
"PM", "DS", "DO", "RM", "PE", "OT", "DM", "PE", "NL", "OL", "DO",
"OL", "OL", "DS", "RM", "DM", "DS", "DM", "DM", "OT", "OL", "RM",
"DM", "DO", "OT", "DM", "DS", "DM", "DO", "PM", "DM", "DS", "DS",
"DM", "DM", "DS", "DM", "DM", "DO", "DS", "DM", "NL", "OT", "PF",
"DM", "RM", "DM", "RM", "NL", "DM", "RM", "NL", "DM", "DS", "DM",
"PM", "DS", "DO", "DM", "DS", "DS", "DM", "OL", "NL", "OT", "DM",
"DS", "DS", "DO", "DS", "DS", "DM", "OL", "DM", "DO", "DO", "NL",
"DS", "DM", "DO", "DM", "DM", "DM", "OT", "DO", "DM", "NL", "OL",
"PM", "DM", "NL", "DM", "OT", "DM", "DS", "RM", "DS", "OT", "DM",
"DS", "DS", "DO", "DS", "PE", "DM", "DM", "DS", "DM", "DO", "DM",
"RM", "DM", "OT", "DM", "DM", "DM", "RM", "DS", "OT", "DO", "RM",
"DM", "DM", "SS", "DM", "DM", "RM", "RM", "RM", "OT", "DM", "OT",
"DM", "DM", "DS", "PM", "RM", "DS", "OL", "DM", "DS", "DS", "DM",
"DS", "DS", "DM", "DM", "DS", "DM", "DS", "RM", "DO", "RM", "RM",
"DM", "RM", "RM", "DO", "DM", "DS", "RM", "DM", "DO", "DM", "NL",
"DM", "DS", "OL", "DM", "DS", "RM", "RM", "OL", "DM", "DS", "DM",
"NL", "NL", "DM", "DO", "DM", "DS", "DO", "RM", "DM", "OL", "RM",
"DM", "DM", "DS", "DM", "DO", "DM", "DO", "DO", "DM", "DM", "DM",
"DO", "DM", "DM", "DS", "DM", "DO", "RM", "DM", "DS", "OL", "DM",
"DM", "OL", "DM", "DS", "DM", "DM", "PM", "OL", "DS", "DM", "RM",
"PM", "OT", "DM", "DM", "DM", "DO", "DS", "RM", "DS", "DM", "RM",
"DS", "DM", "DM", "DS", "DO", "DS", "DO", "DS", "PM", "DM", "DM",
"DM", "DM", "DM", "DO", "DM", "DS", "DM", "DS", "DM", "OL", "OL",
"DM", "DM", "DM", "DS", "DS", "DS", "DM", "DM", "DO", "DM", "DM",
"NL", "DS", "DS", "DO", "PP", "PP", "DM", "DO", "DM", "DM", "OL",
"DM", "DO", "DM", "DS", "DS", "OL", "DS", "NL", "SS", "DM", "DS",
"DS", "OT", "PM", "DM", "RM", "PM", "DS", "NL", "DM", "DS", "DM",
"PF", "DO", "NL", "DO", "DM", "DS", "DM", "DM", "RM", "DS", "DS",
"NL", "DS", "RM", "DS", "DM", "DM", "PF", "DS", "DM", "DM", "PP",
"DS", "DO", "NL", "DM", "DM", "OT", "NL", "DS", "PM", "DM", "DM",
"DM", "DS", "DO", "OL", "DM", "DO", "PP", "PP", "OT", "OL", "PP",
"DS", "NL", "DS", "DM", "DM", "PE", "DM", "OL", "DO", "DM", "PF",
"DM", "DM", "DM", "DS", "DM", "DM", "DM", "DS", "PE", "OT", "DO",
"DM", "NL", "DS", "DO", "DM", "DO", "DM", "DM", "DO", "DM", "DM",
"DM", "DM", "DM", "PE", "DM", "OT", "RM", "DM", "DM", "DM", "DM",
"DM", "DS", "OL", "NL", "DS", "PE", "DM", "DO", "DM", "DM", "DM",
"DM", "DO", "OT", "DO", "DO", "DM", "DM", "PE", "PP", "DM", "DS",
"DM", "OL", "DO", "DM", "DO", "DM", "DM", "DM", "NL", "DM", "DM",
"PM", "DM", "OL", "DM", "DM", "DO", "DM", "NL", "DM", "DM", "DM",
"DS", "OL", "DM", "RM", "DM", "DO", "DO", "DS", "OL", "DM", "OL",
"DS", "DO", "DM", "DM", "DO", "PP", "RM", "PM", "DM", "DO", "RM",
"DM", "DM", "DM", "DO", "DO", "DS", "DM", "DM", "DS", "DM", "DM",
"DM", "DO", "DS", "DM", "DO", "DM", "DM", "DM", "DM", "DM", "DO",
"DM", "DM", "DO", "DM", "OT", "DM", "DM", "DO", "DM", "DO", "DM",
"OL", "DM", "DM", "PE", "NL", "OT", "DO", "OT", "DM", "NL", "DO",
"DS", "OX", "DM", "DM", "DM", "OT", "OL", "DO", "RM", "OL", "DM",
"NL", "NL", "DM", "DM", "DS", "DM", "DO", "DM", "NL", "DM", "RM",
"DM", "DM", "RM", "OL", "SS", "DM", "RM", "DM", "DM", "OL", "OL",
"DS", "PP", "PM", "PP", "PP", "DM", "DM", "DO", "NL", "NL", "DO",
"OL", "DM", "PF", "DM", "DM", "DO", "OT", "NL", "DM", "DM", "NL",
"DM", "RM", "DO", "DM", "DM", "OL", "OT", "PP", "DM", "DM", "DM",
"NL", "DM", "OL", "PE", "SS", "SS", "DM", "RM", "OL", "DM", "DM",
"DS", "DM", "NL", "DO", "DM", "SS", "OT", "PE", "NL", "RM", "RM",
"NL", "DM", "OT", "DM", "RM", "OT", "DM", "DM", "DM", "OL", "DM",
"SS", "DM", "DM", "DO", "DO", "PP", "RM", "DM", "PE", "DM", "DM",
"DM", "DO", "RM", "OL", "DM", "DO", "RM", "DO", "OL", "OL", "OL",
"NL", "NL", "OT", "DM", "RM", "NL", "OT", "PP", "DM", "DM", "DM",
"DM", "PP", "DM", "OL", "NL", "OL", "DM", "PP", "DO", "DM", "DM",
"DM", "PE", "RM", "OT", "DM", "RM", "OT", "SS", "NL", "DM", "PM",
"DO", "NL", "DM", "OL", "OL", "RM", "DM", "DM", "NL", "DM", "DM",
"NL", "DM", "DM", "OT", "DO", "NL", "DM", "DM", "OT", "NL", "RM",
"NL", "DM", "PE", "NL", "NL", "DS", "PE", "DO", "PP", "PP", "NL",
"PE", "DM", "PP", "SS", "OL", "DO", "DS", "NL", "OL", "DM", "DM",
"DM", "OL", "RM", "OL", "SS", "SS", "DO", "PE", "DM", "OT", "NL",
"PP", "SS", "OT", "PP", "DM", "NL", "OT", "DS", "DM", "DM", "DM",
"DM", "DM", "OT", "OT", "PF", "NL", "PE", "OT", "NL", "NL", "RM",
"OT", "OT", "DM", "PE", "DM", "OL", "DM", "PP", "DM", "NL", "PH",
"NL", "DM", "RM", "DM", "DM", "OT", "RM", "DM", "DM", "DM", "DO",
"DM", "OL", "AH", "DM", "NL", "DM", "DM", "DM", "NL", "PH", "DM",
"OL", "NL", "DO", "DM", "DO", "DM", "OL", "NL", "DM", "DO", "DM",
"DM", "DM", "NL", "DM", "NL", "RM", "DM", "DM", "DM", "PF", "DO",
"OL", "DM", "DM", "OL", "DM", "DM", "DM", "DM", "RM", "DO", "OT",
"DS", "NL", "PP", "DM", "DM", "OT", "DM", "DM", "DM", "NL", "DM",
"PP", "RM", "DM", "DM", "OT", "OT", "DM", "DM", "NL", "OT", "PE",
"PE", "DO", "DS", "DO", "PP", "DM", "OL", "DM", "DM", "SS", "DM",
"NL", "DO", "DO", "PH", "DM", "DO", "DM", "DM", "SS", "DM", "AH",
"DM", "DM", "DM", "RM", "DO", "DM", "DO", "DM", "DM", "DM", "DM",
"DM", "OL", "DM", "OL", "SS", "DM", "DM", "DM", "DM", "NL", "DM",
"DM", "DM", "DM", "DM", "DM", "OL", "DS", "DM", "OL", "DM", "DM",
"DM", "DM", "DO", "DM", "PP", "OL", "RM", "DM", "RM", "DM", "DM",
"DM", "PH", "DM", "OL", "DM", "DM", "DM", "DM", "DM", "DO", "DM",
"OT", "DM", "OT", "OL", "NL", "DO", "RM", "DS", "OT", "PF", "PH",
"DO", "NL", "OT", "DM", "DM", "DM", "DM", "DM", "OL", "DM", "OL",
"DM", "DS", "DO", "DM", "DO", "OL", "DM", "DM", "DM", "DO", "DM",
"DS", "DM", "DM", "DM", "OL", "DO", "DO", "DO", "DM", "DO", "DM",
"DM", "PH", "DM", "DM", "DM", "DM", "DO", "OL", "DM", "OL", "DM",
"OL", "DM", "DM", "DM", "NL", "OL", "DM", "OL", "DM", "DM", "RM",
"DM", "DM", "OL", "DM", "OL", "DO", "DM", "DM", "DO", "DM", "DM",
"DM", "DM", "OL", "DO", "DM", "DM", "PH", "DM", "RM", "DM", "DM",
"RM", "DM", "DM", "DO", "DO", "DM", "DM", "DO", "RM", "OL", "RM",
"OL", "OT", "DM", "DM", "DO", "DM", "DO", "DO", "DO", "DM", "DS",
"DM", "DM", "DM", "DM", "OT", "DM", "DM", "OT", "DM", "DM", "DO",
"DM", "OT", "PM", "DO", "DM", "PE", "DO", "DM", "PE", "DM", "OT",
"DM", "DM", "DO", "DM", "DM", "DM", "OT", "RM", "OT", "DO", "DO",
"RM", "DO", "DM", "DM", "DM", "RM", "DM", "PE", "RM", "DM", "DM",
"DO", "DM", "DM", "OL", "OT", "OT", "OL", "PM", "DO", "DM", "DO",
"DM", "DO", "DM", "OL", "DM", "DM", "DO", "RM", "DO", "DM", "DO",
"DM", "DM", "DM", "DM", "DM", "PM", "OT", "DM", "DM", "OL", "DO",
"OL", "DO", "DM", "DM", "DM", "OT", "OL", "DO", "DM", "OT", "DO",
"DM", "DM", "DO", "RM", "DM", "DM", "RM", "OT", "DM", "PM", "AH",
"DM", "PE", "DM", "DO", "DM", "DM", "DM", "DM", "RM", "DM", "DM",
"DO", "DM", "DM", "DM", "DM", "DM", "DM", "DO", "AH", "PE", "DM",
"DO", "DM", "DM", "DO", "DO", "DO", "AH", "DS", "DM", "DM", "OL",
"DM", "DM", "DO", "DM", "DM", "DM", "OL", "DM", "DO", "DM", "DO",
"DM", "RM", "DO", "DM", "DS", "DO", "DO", "RM", "DM", "DM", "DM",
"DM", "DM", "DM", "DO", "DM", "RM", "DM", "RM", "DM", "OL", "DM",
"DM", "DM", "OL", "PE", "OL", "DM", "DO", "RM", "DM", "AH", "DM",
"DO", "DO", "DM", "DO", "DM", "OL", "DM", "RM", "RM", "DM", "DM",
"OL", "DM", "DM", "DM", "DO", "DM", "DM", "DO", "OL", "PF", "DO",
"PE", "DM", "OL", "RM", "DO", "DO", "DM", "DM", "DO", "DM", "DM",
"PE", "DO", "DM", "DM", "DM", "DS", "DM", "DS", "DM", "DM", "DM",
"DM", "DM", "DM", "OL", "NL", "DM", "DO", "DM", "OL", "DS", "DM",
"DM", "PE", "RM", "DM", "DO", "DM", "DM", "DM", "DM", "PM", "DM",
"OT", "DO", "DM", "DO", "DO", "OL", "DO", "DM", "DM", "PE", "RM",
"DM", "DM", "OL", "OT", "DO", "RM", "DM", "DM", "DM", "OL", "OL",
"DM", "DM", "DO", "DM", "DM", "DM", "DM", "DM", "DM", "PE", "DM",
"DM", "OL", "OL", "OL", "DM", "DM", "OL", "OL", "DM", "OT", "DM",
"PM", "OT", "DO", "DM", "DO", "OL", "DM", "DM", "DM", "DM", "DM",
"DO", "DM", "DM", "RM", "OL", "DM", "DO", "OT", "DO", "DM", "OT",
"PM", "DO", "DO", "SS", "RM", "DM", "DM", "PE", "DM", "NL", "DO",
"PE", "DS", "DO", "PM", "OL", "DM", "DM", "DO", "DM", "DM", "PE",
"OL", "DS", "DM", "PM", "DO", "DO", "DO", "DS", "DS", "DM", "OL",
"DM", "DM", "DM", "DM", "RM", "DM", "DM", "DM", "DM", "OL", "RM",
"DO", "DM", "DM", "DO", "DM", "DM", "OL", "DO", "DM", "DO", "DM",
"DM", "OL", "RM", "DM", "OL", "DM", "DM", "DM", "DO", "DO", "DS",
"DM", "DO", "DM", "OL", "DM", "DM", "DO", "DM", "DM", "DM", "DM",
"AH", "DM", "DO", "SS", "DM", "DS", "DM", "DO", "DM", "DM", "PP",
"DM", "DM", "DM", "DS", "DO", "DM", "DM", "DM", "DO", "NL", "DM",
"OL", "PP", "DM", "DM", "DM", "DM", "PM", "PM", "DM", "DM", "DO",
"PE", "PM", "DM", "OL", "DM", "DM", "DM", "DO", "OT", "DM", "DM",
"DM", "DS", "OT", "DM", "DM", "DM", "DM", "DM", "DO", "DM", "OL",
"DM", "DO", "DM", "DM", "DO", "DM", "DO", "DM", "PE", "DM", "DO",
"OL", "PM", "DM", "DM", "DM", "DM", "DO", "DM", "DO", "DM", "OL",
"DM", "SS", "OL", "DM", "DM", "RM", "SS", "DM", "DM", "DO", "DM",
"OL", "RM", "DM", "DM", "DS", "DM", "DM", "DM", "DO", "PE", "DM",
"DS", "DM", "OL", "DM", "OL", "DM", "PP", "DO", "DO", "DO", "DO",
"DO", "DM", "DO", "RM", "DS", "DO", "DM", "DS", "OL", "PP", "DM",
"DM", "DM", "DM", "DO", "DO", "DO", "DM", "NL", "PM", "DM", "DM",
"OL", "DO", "DM", "DM", "DM", "DM", "DM", "DM", "DS", "OL", "PP",
"OL", "DS", "DS", "DM", "DO", "DM", "DM", "DM", "DO", "PM", "OL",
"DO", "DO", "DM", "DM", "DM", "DM", "DS", "PP", "DS", "DM", "DM",
"DO", "DM", "DS", "DM", "DM", "DO", "DM", "DM", "DM", "DO", "OT",
"DM", "OT", "DM", "DO", "RM", "DM", "DO", "DM", "DM", "DM", "DM",
"DO", "DM", "DM", "DM", "DM", "OT", "DM", "DM", "DM", "DM", "DM",
"OT", "DO", "DM", "DM", "DM", "DO", "DS", "DM", "DM", "DM", "DM",
"DM", "PE", "DM", "DM", "DM", "DM", "DM", "DM", "DO", "OL", "DM",
"NL", "DM", "DM", "SS", "PE", "OT", "RM", "DO", "NL", "OL", "DM",
"PE", "DO", "PM", "DM", "DM", "DM", "DM", "DO", "RM", "DM", "DM",
"DO", "DO", "PP", "OT", "DM", "DO", "NL", "DM", "DM", "DM", "DM",
"DM", "DM", "PP", "DO", "SS", "DM", "OL", "DO", "SS", "RM", "DM",
"DM", "RM", "DS", "DM", "DM", "DS", "SS", "DS", "DO", "DM", "DM",
"DS", "PP", "DM", "OL", "DM", "DM", "OT", "RM", "DS", "DS", "PP",
"DM", "DS", "DO", "DM", "DM", "RM", "DM", "AH", "DM", "PE", "RM",
"NL", "RM", "DO", "DM", "DO", "DM", "DM", "DM", "DM", "DM", "NL",
"DM", "RM", "DM", "DM", "DM", "DM", "DO", "DM", "DO", "DO", "DM",
"DM", "DM", "DM", "DM", "DM", "DS", "DO", "DM", "DO", "DM", "DS",
"DS", "DM", "RM", "PP", "DM", "DO", "AH", "OL", "DM", "RM", "DM",
"DS", "DM", "RM", "DM", "DS", "OL", "AH", "PP", "RM", "PP", "DM",
"DS", "DO", "DS", "DM", "DM", "DO", "DS", "DM", "DS", "DM", "DM",
"RM", "DS", "DM", "DO", "DS", "DS", "DO", "DM", "DO", "DM", "DM",
"DO", "NL", "NL", "DO", "RM", "DM", "DM", "OL", "DM", "DM", "PM",
"OT", "DM", "DO", "DM", "DM", "PE", "DM", "DM", "RM", "DO", "OT",
"DM", "OT", "DM", "DO", "DM", "OL", "DM", "DM", "DM", "DM", "DM",
"DO", "OL", "DM", "NL", "RM", "NL", "DM", "DM", "PP", "DS", "DO",
"DO", "DM", "DS", "DM", "PE", "NL", "DO", "PP", "DM", "DS", "DM",
"DM", "DS", "DM", "DM", "DO", "DM", "DM", "DS", "DM", "DS", "DS",
"NL", "DM", "DM", "DM", "SS", "DM", "DM", "DO", "DO", "PP", "NL",
"DM", "DS", "DS", "DM", "DM", "DM", "DM", "DO", "DS", "NL", "DM",
"NL", "DM", "OT", "DM", "DM", "DM", "DM", "OT", "DM", "DM", "DM",
"DM", "RM", "OL", "DM", "DM", "DM", "NL", "PP", "OL", "DM", "DM",
"OL", "DO", "DO", "DO", "NL", "NL", "DM", "DO", "DM", "NL", "DM",
"DM", "DO", "DM", "PP", "DM", "DM", "NL", "OT", "SS", "NL", "DO",
"NL", "DO", "DO", "DM", "NL", "PP", "DO", "DM", "DO", "DM", "DM",
"DM", "DO", "PP", "OT", "NL", "DM", "DM", "AH", "DO", "DM", "DO",
"DS", "DS", "DS", "DS", "DM", "DM", "DM", "DO", "DO", "DM", "DO",
"DM", "DM", "DM", "PP", "DO", "PP", "DS", "DM", "DS", "OT", "DM",
"NL", "DM", "DM", "DM", "OT", "DM", "PP", "DM", "DM", "OL", "DM",
"DO", "DM", "DM", "PP", "DM", "PP", "OL", "DO", "DM", "NL", "DM",
"DM", "DM", "DM", "OT", "DO", "DM", "DM", "OT", "DM", "DM", "DM",
"PP", "DM", "DM", "DM", "PH", "DM", "DM", "NL", "DM", "DO", "DM",
"DM", "DO", "DM", "OL", "PP", "DM", "SS", "DS", "RM", "NL", "PE",
"DM", "NL", "DM", "DO", "DO", "DM", "DM", "DO", "OL", "DS", "PE",
"PP", "PP", "OT", "DO", "DS", "DM", "OT", "DM", "DO", "DM", "PE",
"DM", "DM", "DS", "DM", "DM", "DM", "DM", "DM", "PE", "DO", "DS",
"DM", "DM", "DM", "DO", "DM", "DM", "DS", "RM", "DM", "DM", "PP",
"OT", "OL", "DO", "DM", "OT", "PP", "DS", "DM", "DS", "DM", "DM",
"DM", "PE", "OL", "OT", "DM", "DO", "PE", "PE", "DM", "DM", "NL",
"DO", "PP", "DM", "DM", "PP", "DM", "DM", "DM", "OL", "OL", "DO",
"PM", "RM", "DM", "OT", "DM", "OT", "DM", "NL", "DO", "DM", "DM",
"DM", "DM", "OT", "DM", "OL", "DM", "DO", "OL", "OL", "DM", "RM",
"DM", "DM", "DO", "DM", "DS", "NL", "PE", "DS", "DO", "DM", "RM",
"DM", "DM", "DM", "DO", "DM", "PE", "DO", "DO", "DM", "DM", "DS",
"DM", "DO", "DM", "DM", "DO", "PE", "DO", "DM", "DM", "OL", "PE",
"DS", "DO", "DO", "DM", "DS", "OT", "DS", "DM", "DM", "DS", "NL",
"DO", "DM", "PE", "OL", "DS", "DM", "DM", "OT", "DS", "OL", "DM",
"SS", "OL", "DM", "DM", "DS", "DO", "OL", "DM", "DM", "DM", "OL",
"OT", "DS", "DM", "NL", "DM", "DO", "DM", "OT", "DM", "OL", "OT",
"DM", "PE", "PE", "DS", "DM", "NL", "OT", "PE", "DM", "RM", "DO",
"DM", "DM", "DM", "DO", "DM", "OL", "DM", "DM", "SS", "DM", "RM",
"OT", "DM", "DM", "DM", "DM", "DM", "DO", "DM", "OT", "DM", "DO",
"NL", "DM", "DM", "DO", "DM", "DM", "DS", "DM", "DO", "DM", "DM",
"DM", "PH", "SS", "NL", "DO", "OT", "DM", "DM", "NL", "DM", "PP",
"DM", "DM", "DM", "PE", "DM", "OL", "DM", "PE", "DM", "DM", "DO",
"OT", "DO", "DM", "DO", "DS", "DM", "OT", "DM", "DO", "DS", "DS",
"DO", "AH", "DM", "RM", "DM", "DS", "DM", "DM", "DM", "DS", "OL",
"DM", "DM", "DM", "DM", "DS", "DM", "RM", "DO", "DM", "PE", "RM",
"DM", "DM", "DM", "DO", "RM", "OL", "DM", "DO", "DM", "DS", "DM",
"PE", "DS", "DM", "OL", "DM", "RM", "OL", "OT", "DS", "OT", "DM",
"PE", "PE", "DM", "DM", "DO", "DO", "DM", "PE", "OL", "DM", "DS",
"DM", "PE", "DM", "DM", "DM", "DM", "AH", "OL", "DM", "DM", "RM",
"RM", "OT", "DM", "DM", "DM", "DM", "RM", "DO", "OT", "PE", "OT",
"DM", "DO", "DM", "OT", "DM", "DO", "RM", "DM", "OL", "DM", "OT",
"DM", "DM", "DO", "DM", "PE", "DO", "NL", "OT", "RM", "RM", "OL",
"DM", "PH", "RM", "DM", "DM", "RM", "OT", "DM", "DM", "OL", "DM",
"NL", "DM", "DM", "DS", "DM", "DM", "AH", "DM", "RM", "OT", "DM",
"DM", "DO", "PE", "DO", "DM", "RM", "DM", "DS", "DM", "DO", "RM",
"DM", "NL", "DM", "RM", "DS", "DS", "DO", "RM", "DS", "DO", "DM",
"DM", "DM", "DM", "DM", "DO", "DM", "DO", "DM", "DO", "PE", "DM",
"DM", "OL", "DM", "DS", "DM", "OL", "DM", "PE", "PP", "DO", "DM",
"PE", "DS", "DO", "DM", "DM", "DS", "AH", "DM", "NL", "RM", "OL",
"DM", "DM", "DO", "AH", "DM", "DM", "PE", "DM", "DS", "DO", "RM",
"RM", "NL", "DM", "DM", "RM", "DM", "RM", "DM", "OT", "DS", "DO",
"DM", "DO", "OL", "OL", "PE", "DM", "DM", "DO", "OL", "DM", "DM",
"DM", "DO", "DO", "DM", "OL", "DM", "DM", "OT", "DO", "OL", "DO",
"DM", "NL", "SS", "OT", "PE", "DM", "DM", "DM", "RM", "DM", "DM",
"DM", "DO", "DM", "DO", "PE", "PH", "NL", "DS", "RM", "DM", "PP",
"DO", "DS", "DM", "DO", "DS", "DM", "DM", "PP", "DS", "DO", "DM",
"DM", "DM", "RM", "DS", "NL", "DS", "DM", "DM", "DM", "DM", "DO",
"RM", "RM", "OL", "DS", "DS", "RM", "PE", "DM", "DO", "PE", "DM",
"DS", "DM", "DS", "DM", "DS", "RM", "DM", "DM", "DM", "NL", "DM",
"RM", "DS", "SS", "DM", "DM", "PE", "PE", "DM", "RM", "DO", "DM",
"DM", "DO", "PM", "DM", "DS", "DM", "DM", "RM", "RM", "DM", "DO",
"DM", "NL", "DM", "PE", "SS", "DM", "DM", "OL", "DM", "DM", "DO",
"OL", "NL", "DM", "NL", "DM", "DM", "DM", "PE", "DS", "PP", "DM",
"DM", "DS", "DS", "DO", "DM", "DS", "PM", "DO", "DM", "DM", "AH",
"RM", "DM", "DM", "OL", "DS", "NL", "OL", "DO", "NL", "DS", "DS",
"DM", "DM", "DM", "DM", "DM", "OL", "DO", "DM", "DM", "DS", "DM",
"DX", "RM", "DS", "DM", "DM", "DS", "DO", "DS", "DM", "DM", "DM",
"PP", "OT", "DO", "DS", "DO", "DM", "DM", "DM", "DM", "DM", "PP",
"DM", "DM", "NL", "DM", "DM", "DM", "PE", "NL", "PE", "DM", "DM",
"DS", "RM", "NL", "PM", "DO", "DM", "OT", "PM", "DM", "DM", "DM",
"DM", "DM", "RM", "DO", "RM", "OT", "PP", "DM", "PM", "RM", "DM",
"OL", "DO", "DO", "DM", "OL", "NL", "DO", "PE", "NL", "DM", "DM",
"DM", "DM", "PE", "RM", "PE", "DM", "PE", "PM", "DS", "DM", "RM",
"DM", "DS", "DS", "NL", "RM", "NL", "DO", "NL", "DS", "NL", "DM",
"DM", "DM", "DM", "DS", "DO", "AH", "DS", "DM", "DM", "DM", "PP",
"PM", "DM", "DM", "DS", "DS", "PE", "DS", "DM", "OT", "DS", "DO",
"DM", "DM", "AH", "DS", "DO", "NL", "DM", "DM", "OT", "DM", "DM",
"DM", "RM", "PE", "DM", "RM", "RM", "NL", "DM", "DM", "DM", "PM",
"DM", "NL", "DS", "DM", "DM", "OT", "DM", "PM", "DO", "DO", "DM",
"OT", "NL", "OL", "DM", "DM", "DO", "DM", "NL", "NL", "PE", "OT",
"DM", "PM", "DM", "DM", "DM", "NL", "PM", "DM", "DO", "DM", "DM",
"NL", "DM", "DM", "DM", "NL", "PP", "DO", "DO", "PP", "DM", "NL",
"DO", "DS", "DM", "DM", "DO", "DM", "RM", "DM", "PP", "DM", "DO",
"DM", "PE", "AH", "DS", "DM", "DM", "DS", "NL", "DS", "DM", "DM",
"OL", "RM", "DM", "DM", "RM", "DM", "AH", "DO", "PP", "DM", "OT",
"AH", "DO", "NL", "DM", "DM", "DM", "AH", "PP", "DM", "DM", "DO",
"DM", "DM", "SS", "RM", "DO", "RM", "DS", "PE", "DO", "PM", "DM",
"DM", "AH", "NL", "NL", "DM", "DM", "DM", "SS", "DM", "DM", "DM",
"DO", "PF", "DO", "NL", "DM", "OT", "DM", "PM", "RM", "NL", "SS",
"DM", "DM", "OT", "PP", "DO", "DM", "DM", "PM", "DS", "PM", "DM",
"DM", "DM", "DM", "RM", "DO", "DM", "DM", "DO", "DO", "NL", "DM",
"DO", "DS", "DM", "DM", "DM", "RM", "DM", "RM", "RM", "DM", "DO",
"NL", "OL", "DM", "DM", "DS", "NL", "DM", "DS", "PP", "OL", "DM",
"DM", "DS", "DM", "AH", "PE", "DM", "DM", "DM", "RM", "OT", "DM",
"DM", "PP", "PP", "DM", "DO", "OL", "DM", "DM", "DS", "AH", "DM",
"DO", "DM", "DM", "DM", "PP", "DS", "NL", "NL", "DO", "PM", "DM",
"DM", "DM", "DM", "DM", "DM", "NL", "DM", "DS", "DM", "DM", "OL",
"DO", "DM", "NL", "DO", "DM", "AH", "AH", "DM", "PP", "DO", "DM",
"DM", "DS", "DM", "DS", "PP", "DM", "OL", "DM", "DM", "PP", "DS",
"DS", "DM", "AH", "DM", "DM", "DM", "DS", "DM", "DM", "DM", "DM",
"DM", "DM", "DM", "AH", "DM", "DO", "DM", "DM", "DM", "OL", "DM",
"DM", "PP", "OT", "DM", "DM", "DM", "PF", "DM", "DO", "DM", "DM",
"OT", "DM", "DM", "DO", "OL", "DO", "DM", "PP", "NL", "DM", "SS",
"DM", "DM", "AH", "DM", "DM", "DO", "DM", "NL", "DM", "DM", "OL",
"DS", "DO", "DM", "NL", "AH", "PP", "OT", "DM", "DS", "DM", "DM",
"DM", "DS", "DM", "OL", "SS", "DM", "SS", "DM", "PP", "DM", "DS",
"DS", "DM", "DO", "AH", "DS", "DM", "DM", "DS", "DM", "NL", "DO",
"NL", "DM", "PP", "DM", "DM", "DM", "DM", "NL", "OT", "PM", "DM",
"SS", "DM", "DM", "DM", "OL", "SH", "DM", "DM", "DM", "SS", "PM",
"DO", "DM", "DO", "SS", "DM", "DM", "NL", "DM", "DM", "DM", "DM",
"DM", "NL", "DM", "OT", "DO", "DM", "DM", "PP", "DS", "DS", "DO",
"DM", "DM", "DO", "NL", "DM", "DS", "OL", "DS", "DM", "NL", "OL",
"DM", "OT", "DM", "DM", "DO", "DS", "DM", "PE", "DM", "DM", "DM",
"DM", "PE", "OL", "NL", "DM", "DM", "NL", "DS", "DM", "DM", "DM",
"OL", "DM", "DM", "OL", "DM", "DM", "DM", "PM", "DM", "DO", "DM",
"DO", "DM", "OL", "RM", "RM", "OL", "DO", "DM", "PM", "DM", "DM",
"DM", "DM", "DM", "DM", "OT", "DM", "DM", "OL", "DM", "DM", "DO",
"DO", "DM", "DM", "NL", "DM", "OT", "OL", "DM", "DO", "OL", "DO",
"DM", "PM", "DM", "DM", "DM", "DS", "DO", "DM", "OL", "DO", "OL",
"DO", "DO", "DS", "DS", "DS", "DS", "DM", "DM", "OL", "PM", "AH",
"DM", "DM", "DM", "DM", "DM", "DM", "PM", "DS", "DM", "DM", "RM",
"PM", "DS", "DM", "DM", "PM", "DO", "DM", "DO", "DM", "RM", "OL",
"DO", "DS", "DS", "RM", "DM", "DM", "DM", "NL", "DO", "DM", "PM",
"DO", "DO", "DM", "DM", "DO", "OT", "DM", "DM", "DM", "DM", "DM",
"DO", "DM", "PE", "DM", "RM", "DO", "RM", "OL", "NL", "DM", "DM",
"DO", "DO", "DO", "DM", "PM", "DM", "RM", "DO", "DM", "DM", "PM",
"DM", "DO", "DM", "DO", "DM", "OT", "NL", "NL", "DM", "AH", "OL",
"DO", "DM", "DM", "RM", "OL", "DO", "DM", "DO", "PM", "DM", "DM",
"RM", "DM", "NL", "PM", "PE", "DS", "DO", "DO", "DO", "DS", "DS",
"DM", "DM", "DS", "DM", "DS", "DM", "DM", "DS", "DM", "DM", "DM",
"DM", "DO", "PM", "DM", "RM", "RM", "DO", "DM", "DO", "DS", "PM",
"DO", "DM", "RM", "DM", "RM", "DO", "DS", "DM", "PM", "DM", "OL",
"PM", "DM", "PE", "DO", "DM", "RM", "DM", "RM", "DM", "PM", "OL",
"DM", "PE", "RM", "DM", "RM", "OL", "DM", "DM", "OT", "RM", "OL",
"DM", "NL", "DM", "DM", "PE", "RM", "RM", "RM", "RM", "RM", "RM",
"DM", "RM", "PM", "DO", "NL", "DO", "DM", "PM", "DM", "DO", "DO",
"DM", "DM", "OL", "RM", "NL", "NL", "DM", "OL", "RM", "DM", "RM",
"DO", "PM", "DO", "DM", "DM", "DO", "PM", "RM", "NL", "DO", "DM",
"DM", "RM", "RM", "RM", "DM", "DM", "OL", "OT", "RM", "DO", "DO",
"DM", "DO", "OT", "DM", "DM", "PM", "PE", "DM", "DM", "DS", "DM",
"OL", "DS", "DM", "OL", "DO", "AH", "RM", "RM", "DM", "RM", "DS",
"DO", "PM", "DO", "AH", "DS", "AH", "DM", "DS", "DO", "DM", "AH",
"AH", "DM", "PE", "DM", "DS", "DS", "DS", "DM", "DM", "PE", "DO",
"DM", "DO", "RM", "DM", "DM", "DO", "NL", "DM", "NL", "DO", "DO",
"DM", "DS", "PM", "DO", "PE", "DM", "PM", "DM", "PE", "OL", "PM",
"PE", "DM", "PM", "DM", "DM", "DM", "DO", "RM", "OL", "DO", "DM",
"RM", "RM", "DM", "RM", "RM", "RM", "DO", "RM", "RM", "OL", "RM",
"DM", "PM", "RM", "PM", "DM", "RM", "DM", "PE", "DO", "OL", "OL",
"DM", "OL", "DO", "DO", "DM", "DO", "DO", "RM", "DM", "DM", "DM",
"DM", "DO", "RM", "RM", "DM", "RM", "RM", "DM", "DO", "RM", "DM",
"NL", "PM", "DO", "DO", "DO", "PM", "DM", "DO", "DO", "NL", "DM",
"DO", "DM", "DM", "RM", "DM", "NL", "DM", "RM", "DO", "DM", "DM",
"DS", "DO", "DM", "DM", "DO", "RM", "DO", "RM", "DS", "RM", "DM",
"RM", "DM", "DS", "DS", "PM", "DO", "OL", "DM", "DO", "PE", "DM",
"OL", "DS", "RM", "OL", "DM", "DM", "DO", "DO", "DS", "PM", "DM",
"RM", "DS", "DO", "DM", "DM", "RM", "AH", "DS", "DM", "RM", "NL",
"DM", "DM", "DS", "DO", "OL", "DS", "DM", "RM", "RM", "PM", "PE",
"PM", "DO", "DM", "DM", "NL", "PE", "DO", "DM", "RM", "RM", "OL",
"RM", "DO", "DM", "DM", "RM", "RM", "PM", "DM", "OT", "DM", "DM",
"PE", "NL", "PM", "DM", "DO", "SS", "DO", "NL", "DO", "DO", "DM",
"RM", "DM", "OT", "DM", "DO", "DO", "RM", "DM", "PM", "DM", "DM",
"PM", "DO", "DM", "PM", "DM", "DO", "DO", "OT", "NL", "AH", "DO",
"PM", "RM", "DO", "DM", "NL", "DM", "DO", "PE", "DO", "DM", "RM",
"DO", "DO", "RM", "PE", "PE", "DS", "DM", "RM", "DO", "DM", "DO",
"DM", "DM", "DM", "DM", "RM", "DS", "RM", "DO", "DO", "DS", "DM",
"RM", "DM", "PP", "DO", "NL", "DM", "RM", "DO", "OL", "DS", "DM",
"DS", "DM", "DS", "DS", "DO", "SS", "DO", "RM", "DO", "DM", "DM",
"DM", "PE", "OL", "DM", "DO", "OL", "DS", "PM", "PM", "DM", "NL",
"DS", "DS", "DS", "DS", "PE", "DM", "DM", "PE", "PE", "PM", "DM",
"PE", "AH", "DM", "PM", "PP", "SS", "DM", "DM", "NL", "DO", "PM",
"OL", "DO", "PE", "DM", "RM", "OL", "OL", "PM", "DM", "PM", "PE",
"NL", "DM", "OL", "PE", "DO", "DO", "NL", "RM", "DO", "PP", "DM",
"DM", "PE", "DM", "DM", "PM", "RM", "OL", "DO", "PE", "PE", "PE",
"DO", "SS", "NL", "DM", "DO", "DO", "DM", "PE", "DM", "DM", "DM",
"DO", "DO", "DM", "DM", "DO", "SS", "DO", "RM", "DM", "DO", "PE",
"DO", "DO", "DM", "DS", "DO", "DM", "AH", "NL", "DO", "DM", "PM",
"NL", "OL", "PE", "DM", "PM", "NL", "DM", "PP", "AH", "PE", "DS",
"DO", "DS", "DM", "PP", "DS", "DM", "DS", "NL", "DS", "PP", "DO",
"DM", "SS", "DM", "DM", "DS", "RM", "DS", "DO", "NL", "DS", "DO",
"DO", "DO", "NL", "PE", "DS", "PP", "DM", "DS", "PM", "DS", "PP",
"PM", "DM", "DS", "PE", "NL", "PE", "PM", "PE", "DM", "DM", "DS",
"DM", "NL", "DM", "PE", "DM", "DM", "DM", "DM", "PE", "OL", "NL",
"DM", "PM", "NL", "PM", "DO", "PM", "DO", "PE", "NL", "DO", "DM",
"PM", "RM", "NL", "DM", "DO", "NL", "PM", "OT", "DO", "RM", "PM",
"NL", "DM", "PM", "AH", "DM", "DM", "PE", "DM", "PM", "RM", "OL",
"DS", "OL", "DS", "PE", "PE", "DM", "DM", "PM", "DM", "RM", "PM",
"RM", "OL", "DM", "DO", "DS", "DO", "DO", "DM", "NL", "DM", "DM",
"PE", "PM", "DS", "DM", "DO", "RM", "DM", "DO", "DS", "DM", "PP",
"AH", "NL", "PE", "DM", "DM", "OL", "DM", "PE", "DM", "DS", "NL",
"DS", "PE", "DM", "AH", "AH", "DM", "PM", "OL", "DM", "AH", "RM",
"DO", "AH", "RM", "AH", "RM", "DM", "DM", "PE", "RM", "PP", "DM",
"AH", "PP", "DM", "DM", "NL", "DM", "DO", "DM", "DO", "PM", "SS",
"PE", "DO", "DO", "DM", "DO", "OL", "PE", "RM", "PM", "DM", "PE",
"DM", "DM", "DM", "PM", "DM", "AH", "DS", "NL", "DS", "NL", "AH",
"AH", "NL", "AH", "PM", "DS", "OL", "AH", "DM", "DM", "RM", "DO",
"DM", "AH", "PM", "PE", "DM", "DM", "RM", "PM", "PE", "DM", "DM",
"DO", "RM", "OL", "DO", "PP", "DM", "DM", "PE", "DM", "DM", "DM",
"OT", "PE", "RM", "DM", "OT", "RM", "DM", "DM", "PE", "DM", "DO",
"PM", "DM", "DS", "RM", "NL", "DS", "PM", "NL", "RM", "OT", "PP",
"DM", "NL", "RM", "DO", "DM", "PE", "DM", "AH", "DO", "PE", "DM",
"SS", "DM", "DO", "DM", "PE", "DM", "NL", "DM", "PM", "DM", "RM",
"DO", "PM", "DM", "AH", "DS", "DM", "PM", "OL", "PM", "DO", "PP",
"DM", "OT", "DM", "OT", "NL", "OL", "AH", "DS", "DM", "DS", "PP",
"SS", "DM", "PM", "RM", "DM", "DO", "DS", "DM", "DM", "RM", "DS",
"RM", "RM", "DS", "RM", "NL", "RM", "DS", "DO", "DM", "PM", "PM",
"NL", "DM", "RM", "DO", "DS", "DS", "OL", "DS", "DM", "DM", "DO",
"DM", "DM", "PE", "DM", "DS", "DM", "DM", "DM", "OL", "DS", "DO",
"DM", "DM", "PM", "SS", "DM", "DO", "NL", "PP", "RM", "DO", "RM",
"RM", "NL", "DM", "DM", "DM", "DO", "PM", "RM", "PP", "SS", "PP",
"RM", "DM", "PM", "DM", "DM", "DM", "RM", "PM", "DM", "DM", "PE",
"OL", "DO", "NL", "RM", "RM", "RM", "OT", "DM", "DM", "DM", "PM",
"DO", "DM", "RM", "DO", "DM", "DO", "DM", "DO", "DM", "DM", "DM",
"DM", "DM", "DO", "DS", "DO", "DM", "DM", "RM", "DO", "DM", "PE",
"DM", "PM", "PE", "DM", "DM", "RM", "DO", "OL", "NL", "NL", "DM",
"PE", "PM", "RM", "PP", "RM", "PE", "DM", "PE", "OL", "PE", "DM",
"PE", "NL", "DO", "PP", "PM", "DM", "RM", "NL", "PP", "RM", "PE",
"RM", "OL", "OL", "DM", "PM", "DS", "OT", "RM", "DM", "PE", "DM",
"SS", "DS", "DM", "DS", "DM", "DS", "DO", "RM", "DM", "DM", "DM",
"RM", "SS", "PM", "DM", "AH", "DM", "NL", "NL", "PE", "DM", "PM",
"RM", "DS", "RM", "PM", "SH", "PE", "DM", "PM", "DM", "DM", "DM",
"PP", "DO", "DO", "DM", "DM", "PE", "NL", "PM", "DO", "DM", "PP",
"DM", "DS", "NL", "RM", "DM", "PP", "PM", "DS", "NL", "PM", "DO",
"SS", "OL", "PP", "DM", "NL", "DM", "DM", "RM", "DM", "OL", "DO",
"PP", "AH", "NL", "DM", "SS", "PE", "DM", "DM", "DM", "DO", "PE",
"DM", "OT", "DM", "PM", "RM", "PE", "DM", "OT", "DM", "DM", "DO",
"RM", "PE", "PE", "DM", "DM", "DM", "DM", "OT", "RM", "DS", "DO",
"OL", "PM", "DM", "DO", "NL", "PM", "NL", "OL", "DM", "PE", "PP",
"RM", "NL", "DO", "DM", "DM", "NL", "DO", "PM", "DM", "DM", "PP",
"DO", "DM", "DM", "PM", "SH", "SS", "DM", "DS", "NL", "RM", "NL",
"OT", "OL", "DO", "DO", "AH", "DM", "OL", "DO", "NL", "PM", "PP",
"OT", "DO", "NL", "PE", "RM", "PM", "DS", "PP", "DM", "DO", "DM",
"DM", "DM", "SS", "PE", "DS", "DM", "PM", "DO", "NL", "OT", "DM",
"DM", "DM", "DO", "DS", "RM", "NL", "DM", "PM", "DM", "PM", "DM",
"PP", "PE", "DM", "PE", "PE", "PM", "DM", "DM", "RM", "OL", "PP",
"DM", "DM", "RM", "DM", "PE", "DM", "DO", "NL", "DS", "DM", "OL",
"SS", "PE", "RM", "SS", "DS", "NL", "AH", "PP", "DM", "PM", "RM",
"OL", "DO", "DO", "NL", "DO", "DM", "NL", "AH", "NL", "PP", "DO",
"RM", "OT", "DM", "PM", "OL", "DM", "AH", "DM", "NL", "PM", "DO",
"DM", "DM", "DM", "DM", "OT", "RM", "DM", "NL", "AH", "DM", "DM",
"DM", "NL", "DO", "OT", "PM", "DM", "PM", "DO", "OL", "NL", "DS",
"OL", "DM", "PP", "OT", "NL", "PP", "PE", "DO", "PE", "DO", "DM",
"DM", "DM", "DM", "AH", "DM", "OT", "NL", "DM", "PM", "PM", "DM",
"OT", "OL", "DM", "NL", "PE", "DM", "PP", "DM", "OT", "PP", "DS",
"PP", "OT", "PP", "NL", "DO", "PM", "DM", "PE", "NL", "DM", "DO",
"DS", "DS", "NL", "NL", "OT", "DS", "AH", "OT", "AH", "DM", "PE",
"AH", "SS", "DO", "PM", "PE", "NL", "PP", "NL", "DM", "DO", "DS",
"DO", "DM", "DM", "DO", "OL", "NL", "PM", "PE", "DS", "NL", "DM",
"OT", "PM", "NL", "DM", "PP", "DS", "OT", "PP", "NL", "DM", "DM",
"PE", "DM", "DM", "DM", "PE", "OT", "PP", "DM", "DM", "PE", "OL",
"PM", "SH", "PE", "NL", "NL", "PE", "NL", "PE", "PE", "OL", "DM",
"PE", "NL", "DM", "PM", "DO", "PE", "OL", "NL", "OL", "DM", "DM",
"DO", "DM", "DM", "DM", "RM", "RM", "PE", "PE", "DO", "NL", "DM",
"RM", "OL", "PM", "DM", "OT", "DM", "DM", "RM", "RM", "DO", "PM",
"NL", "DM", "DO", "DS", "DO", "PM", "RM", "RM", "DM", "OL", "RM",
"PM", "PM", "NL", "NL", "RM", "PM", "RM", "DO", "DM", "DM", "PM",
"DO", "NL", "PM", "DO", "PE", "PE", "DM", "UR", "PE", "NL", "NL",
"PE", "DM", "OT", "OL", "UR", "DM", "NL", "PP", "PM", "DM", "DO",
"RM", "PM", "PE", "PE", "DO", "DM", "PE", "DS", "OT", "DM", "DO",
"DS", "PE", "PM", "PF", "DM", "DM", "DS", "DM", "DM", "DS", "DS",
"SH", "DS", "RM", "NL", "OT", "DO", "DM", "DM", "PE", "DM", "PE",
"DM", "NL", "PM", "DO", "PM", "DO", "AH", "OL", "DM", "DO", "PE",
"NL", "DM", "RM", "OT", "NL", "DM", "PM", "DM", "DM", "RM", "OT",
"DM", "NL", "DM", "RM", "PF", "OT", "UR", "DM", "DO", "PE", "RM",
"DO", "DO", "RM", "DM", "RM", "OL", "RM", "PM", "DO", "PE", "SH",
"PE", "RM", "RM", "DM", "DM", "PE", "PE", "DM", "NL", "DM", "NL",
"RM", "DM", "OT", "RM", "PE", "DM", "DO", "RM", "DM", "PE", "OL",
"DM", "RM", "PM", "DO", "PE", "DO", "NL", "DS", "RM", "OL", "DM",
"DO", "RM", "DM", "PM", "DM", "RM", "DO", "NL", "PE", "PE", "OL",
"PM", "DM", "RM", "PE", "RM", "RM", "RM", "RM", "OL", "PM", "RM",
"RM", "PM", "NL", "DM", "DM", "DM", "DM", "OT", "PM", "NL", "RM",
"DM", "RM", "DM", "DM", "RM", "NL", "DO", "DO", "OL", "RM", "RM",
"PE", "DM", "DM", "OL", "PE", "PM", "DO", "OL", "NL", "RM", "DO",
"PE", "DM", "OT", "RM", "DO", "AH", "DM", "PM", "PM", "DM", "RM",
"DS", "DM", "PE", "PM", "DM", "DM", "DO", "NL", "PE", "DM", "DM",
"PF", "RM", "RM", "DM", "PE", "DM", "PE", "PE", "NL", "PM", "DS",
"PM", "DO", "PE", "DM", "DM", "PE", "DM", "PE", "DM", "NL", "RM",
"NL", "PE", "RM", "DM", "OL", "DO", "DM", "RM", "DS", "DM", "DM",
"RM", "PF", "DO", "RM", "DM", "RM", "OL", "NL", "DM", "PE", "OL",
"PE", "DM", "RM", "DM", "DM", "DM", "PE", "AH", "NL", "DO", "PE",
"DM", "PE", "DS", "PM", "DM", "DM", "DM", "DM", "DM", "RM", "DO",
"DM", "RM", "RM", "DM", "PE", "OT", "SH", "DM", "PM", "RM", "DO",
"RM", "RM", "RM", "DO", "DO", "DO", "RM", "RM", "DM", "DM", "RM",
"RM", "RM", "DM", "PE", "RM", "DM", "DO", "DM", "DM", "DM", "DM",
"RM", "RM", "RM", "DO", "DM", "RM", "DM", "DS", "AH", "RM", "RM",
"RM", "DO", "DM", "PM", "RM", "RM", "PE", "DO", "AH", "NL", "NL",
"PE", "PM", "DM", "DO", "RM", "PM", "PE", "OT", "RM", "RM", "PM",
"DM", "PE", "NL", "DO", "AH", "PE", "PE", "DM", "DO", "DM", "PE",
"RM", "RM", "DO", "AH", "RM", "PM", "DO", "DM", "DO", "PE", "DM",
"DO", "DS", "DO", "SH", "NL", "PM", "RM", "DM", "NL", "DM", "RM",
"UR", "DM", "DM", "RM", "DM", "DM", "DO", "DO", "RM", "DM", "DS",
"DO", "DS", "PE", "RM", "OL", "PE", "PM", "PE", "DM", "RM", "RM",
"RM", "DM", "DM", "DM", "DO", "NL", "DM", "NL", "DM", "RM", "DM",
"RM", "PM", "OL", "DM", "PE", "DM", "DM", "DM", "DO", "DS", "PE",
"OT", "RM", "PM", "DM", "DO", "DM", "PM", "DO", "DM", "RM", "RM",
"RM", "RM", "RM", "DM", "PE", "DO", "PM", "RM", "DO", "AH", "PE",
"RM", "OT", "RM", "AH", "RM", "PM", "DM", "DO", "RM", "DO", "RM",
"RM", "DM", "OL", "RM", "OL", "RM", "DO", "PM", "RM", "PE", "PE",
"DO", "DS", "PE", "DM", "DO", "DM", "DM", "DM", "RM", "NL", "NL",
"RM", "DM", "DO", "DS", "DO", "RF", "DO", "RM", "DM", "RM", "PE",
"PM", "AH", "OL", "RM", "PM", "RM", "DO", "DM", "PE", "RM", "DM",
"PM", "OT", "OT", "DO", "RM", "SH", "PE", "PE", "SH", "DM", "DM",
"DO", "AH", "RM", "OT", "DM", "RM", "DM", "DS", "NL", "DM", "RM",
"NL", "DO", "DO", "PE", "OT", "RM", "DM", "DM", "PE", "DO", "DM",
"PE", "PE", "DS", "DM", "SH", "RM", "PE", "DS", "PE", "PM", "DM",
"NL", "DO", "NL", "DM", "RM", "RM", "PE", "RM", "DO", "RM", "DM",
"RM", "DM", "RM", "PM", "RM", "RM", "DO", "DM", "DM", "DO", "NL",
"PE", "DO", "DM", "RM", "OL", "DM", "NL", "RM", "DM", "PM", "DO",
"OL", "DM", "DM", "DM", "DM", "PM", "RM", "NL", "RM", "DM", "DO",
"DM", "PE", "DM", "RM", "SS", "DM", "DM", "PM", "DO", "DO", "DM",
"RM", "DO", "DO", "AH", "RM", "DO", "DO", "RM", "PE", "RM", "RM",
"DM", "DO", "SH", "DM", "RM", "RM", "DM", "PE", "RM", "DM", "RM",
"DO", "NL", "DM", "RM", "DM", "OL", "DM", "RM", "DO", "RM", "DS",
"OL", "DO", "DM", "PE", "RM", "DM", "NL", "PM", "NL", "PE", "DM",
"DO", "DM", "DM", "DO", "DM", "DM", "RM", "RM", "AH", "DM", "OT",
"PE", "RM", "DM", "RF", "DM", "OL", "DO", "RM", "PM", "SH", "PM",
"DM", "RM", "PP", "DS", "DM", "PM", "PP", "DM", "DO", "PE", "DM",
"DM", "RM", "DM", "PM", "DS", "DM", "AH", "NL", "DM", "OT", "PE",
"OT", "SS", "DM", "RM", "DS", "RM", "RM", "SS", "RM", "PE", "RM",
"DM", "PE", "SS", "DM", "DM", "RM", "PM", "PE", "PE", "DO", "DM",
"DM", "RM", "NL", "RM", "RM", "DO", "RM", "PM", "PM", "OL", "RM",
"DM", "PM", "DO", "DM", "PM", "NL", "DM", "DM", "PE", "DM", "DM",
"DM", "DM", "PM", "DO", "DM", "RM", "PF", "RM", "PM", "DM", "RM",
"OT", "PE", "PE", "PM", "PE", "NL", "DM", "PE", "RM", "DM", "RM",
"PE", "DS", "DS", "RM", "RM", "RF", "PE", "NL", "DM", "RM", "OT",
"RM", "AH", "SS", "DO", "PE", "SH", "RM", "OT", "PM", "PE", "DS",
"RM", "DS", "RM", "AH", "OT", "NL", "PM", "DM", "OT", "PE", "DM",
"RM", "DM", "DM", "DO", "DM", "DM", "DO", "DO", "NL", "DM", "DO",
"OT", "RM", "OT", "NL", "DM", "SH", "DO", "DM", "DS", "PE", "DO",
"PP", "PE", "DS", "DM", "OT", "DM", "OL", "NL", "SS", "SH", "DM",
"DM", "DO", "DM", "OL", "OL", "PE", "SS", "PE", "PP", "DM", "DO",
"PF", "DM", "DM", "OL", "DO", "PE", "OL", "DO", "NL", "DM", "DM",
"RM", "PE", "RM", "DM", "PP", "PE", "PM", "PE", "NL", "DO", "DM",
"SH", "DM", "AH", "DO", "DO", "DS", "DO", "DM", "DM", "DS", "OT",
"DO", "DS", "DM", "PP", "PE", "DS", "DM", "OT", "SH", "DM", "PE",
"NL", "DO", "PE", "DM", "PP", "SH", "SS", "PP", "DM", "DM", "NL",
"DM", "NL", "DM", "DM", "PE", "DO", "DM", "NL", "DO", "DO", "DM",
"DS", "OL", "DM", "RM", "DS", "DM", "PP", "AH", "DO", "DM", "DO",
"PE", "DM", "DM", "PM", "PE", "OT", "PE", "RM", "NL", "DM", "PP",
"DS", "AH", "AH", "DM", "DM", "NL", "OT", "DM", "DM", "DO", "PE",
"PE", "NL", "DM", "PE", "DO", "NL", "OT", "PE", "DO", "NL", "OT",
"NL", "RM", "NL", "RM", "DM", "OT", "PE", "DS", "DO", "DO", "DO",
"PE", "PE", "DM", "DM", "PM", "DS", "RM", "NL", "RM", "PE", "RM",
"DO", "PE", "PE", "PE", "DS", "DM", "OT", "DM", "DM", "PP", "PE",
"PE", "DO", "SH", "PP", "OT", "DM", "DO", "OT", "SS", "AH", "PE",
"DM", "NL", "PE", "OL", "DM", "SS", "DS", "PP", "OL", "DM", "PP",
"DS", "NL", "OL", "RM", "PP", "RF", "DM", "RM", "DM", "DM", "DO",
"DM", "RM", "PE", "SH", "DM", "PP", "DM", "PE", "NL", "DM", "RM",
"PP", "OT", "PE", "DM", "OL", "PE", "NL", "DM", "DO", "DM", "DM",
"DM", "NL", "PE", "DM", "DS", "DM", "DM", "NL", "DM", "PE", "DM",
"PP", "DM", "DM", "PE", "RM", "NL", "OT", "DM", "NL", "NL", "DO",
"RM", "DO", "NL", "DO", "PE", "PP", "PM", "OL", "DM", "DM", "NL",
"SH", "PE", "PE", "NL", "PE", "PP", "DS", "PM", "OT", "DM", "OT",
"PE", "PE", "DO", "PE", "DM", "PP", "PP", "SH", "RM", "DO", "DM",
"PP", "DM", "NL", "PE", "DM", "PE", "NL", "DO", "DM", "DM", "DM",
"DS", "DM", "DO", "DM", "DO", "DM", "DO", "DM", "DM", "PP", "PP",
"NL", "OL", "DM", "NL", "OT", "DM", "DM", "OL", "DM", "PE", "NL",
"DS", "DS", "DM", "PP", "OT", "DM", "DM", "OT", "PM", "DM", "DO",
"NL", "DO", "DO", "OT", "RM", "NL", "PE", "PE", "DO", "NL", "PP",
"DO", "PE", "PE", "OT", "DO", "OL", "DO", "RM", "NL", "OT", "DO",
"PE", "PM", "DM", "NL", "PP", "DS", "NL", "PP", "PE", "DM", "PP",
"AH", "PP", "PP", "NL", "RM", "DM", "RM", "PE", "OT", "OT", "RM",
"PE", "PM", "DM", "PP", "SH", "DO", "PE", "PP", "PP", "DM", "NL",
"NL", "DM", "DM", "NL", "DM", "DM", "SH", "DO", "NL", "SS", "DM",
"NL", "PP", "PE", "DM", "DS", "DS", "DM", "PP", "RM", "DM", "PE",
"DM", "PE", "PE", "PP", "PE", "PE", "PP", "DM", "OL", "PP", "PE",
"DM", "DM", "DM", "DS", "DM", "DM", "DO", "DM", "PP", "PP", "DO",
"AH", "PE", "PP", "DM", "DM", "DM", "RM", "DM", "SH", "PP", "DM",
"OT", "PP", "DM", "NL", "OT", "OT", "NL", "SS", "DM", "PE", "PE",
"OT", "RF", "DM", "PP", "PE", "DS", "DM", "NL", "DM", "PP", "DO",
"NL", "PM", "DM", "PE", "NL", "NL", "SH", "DO", "OT", "DM", "PP",
"DM", "SS", "OT", "SS", "DM", "PE", "NL", "SS", "PE", "DM", "PP",
"DO", "DM", "OT", "OT", "DM", "DO", "DM", "DS", "PP", "PE", "DM",
"PE", "PP", "OT", "OT", "OL", "OL", "DM", "NL", "DM", "SS", "SS",
"DM", "RM", "OT", "DM", "NL", "PE", "DM", "SS", "DM", "DM", "PE",
"DM", "PE", "OT", "PE", "OT", "PE", "NL", "PE", "DO", "PE", "PE",
"NL", "PE", "SH", "DM", "DO", "AH", "SH", "OT", "OT", "DM", "DS",
"DM", "NL", "NL", "DO", "OT", "DM", "PE", "PE", "AH", "DO", "OT",
"PE", "PP", "PE", "PM", "PE", "DM", "PM", "OT", "OT", "DM", "OT",
"DM", "NL", "NL", "PP", "SS", "NL", "DM", "DM", "PE", "DM", "DM",
"DO", "DM", "RM", "DM", "DM", "SS", "DM", "DM", "DS", "NL", "DM",
"DM", "DM", "AH", "DM", "PE", "OT", "DM", "DM", "DM", "PE", "OT",
"DM", "DS", "OT", "DM", "PM", "DM", "DM", "OT", "OL", "PE", "DM",
"DM", "DM", "PE", "OT", "DM", "NL", "OL", "PE", "PE", "OT", "RM",
"OT", "SH", "NL", "NL", "PM", "SH", "PE", "DO", "OL", "OT", "PE",
"PE", "PE", "RM", "RM", "PE", "AH", "DM", "SH", "RM", "PE", "RM",
"PE", "OT", "RM", "RM", "DS", "OT", "DM", "NL", "PM", "RM", "DM",
"DM", "PE", "PE", "RM", "PE", "OL", "DO", "PE", "OT", "SH", "PE",
"OT", "DO", "PE", "RM", "DS", "OL", "SH", "NL", "NL", "SH", "DM",
"OT", "DM", "PE", "RM", "DM", "OT", "DM", "DM", "OL", "OT", "DM",
"DM", "OL", "RM", "RM", "DM", "PE", "PE", "DM", "OL", "RM", "DM",
"OL", "RM", "OL", "DM", "RM", "DM", "RM", "DO", "DM", "PH", "DS",
"RM", "DM", "PE", "PE", "NL", "DM", "PM", "PE", "OL", "PE", "DM",
"OT", "PE", "PE", "DM", "RF", "RM", "DM", "PE", "DO", "OL", "DM",
"DO", "OL", "NL", "OL", "DM", "DM", "DM", "PE", "PE", "OL", "DS",
"OL", "DM", "PE", "NL", "OT", "OT", "DM", "PM", "RF", "DM", "DM",
"OT", "NL", "RM", "PE", "PE", "DO", "RM", "RM", "RM", "OL", "DO",
"RM", "DM", "NL", "PE", "OL", "RM", "DO", "DO", "RM", "OL", "RM",
"DS", "OT", "DM", "PE", "RM", "NL", "RF", "AH", "RM", "RM", "RM",
"PE", "RM", "RM", "DO", "RM", "DM", "RF", "RM", "DM", "RM", "DO",
"DS", "RM", "DM", "DM", "RM", "DM", "RM", "DX", "DM", "PE", "RM",
"DM", "RM", "PE", "DO", "RM", "DM", "PE", "OT", "PE", "RM", "SH",
"DM", "DM", "RM", "RM", "NL", "RM", "DM", "RF", "DS", "RM", "AH",
"OL", "DM", "DM", "DM", "OT", "RM", "DO", "RM", "RF", "DM", "SH",
"OT", "RM", "DM", "PE", "OT", "DM", "PM", "PE", "DS", "DM", "DM",
"DM", "RM", "DM", "PE", "RM", "DM", "DO", "OL", "DM", "PE", "RM",
"RM", "PE", "RM", "DM", "RM", "OL", "RM", "DM", "RM", "DM", "DO",
"PE", "OL", "RM", "RM", "RM", "DM", "NL", "PE", "DM", "PE", "OT",
"RM", "DM", "DM", "OT", "PM", "DM", "RM", "RM", "SH", "RF", "OT",
"RM", "NL", "RM", "RM", "RM", "DM", "OT", "OL", "RM", "PE", "AH",
"RM", "RF", "PE", "PE", "DM", "RM", "DM", "PE", "OL", "RM", "OT",
"DM", "DM", "PE", "DM", "DS", "RM", "RM", "NL", "DO", "PM", "RM",
"RM", "DO", "OT", "DM", "RM", "RM", "NL", "DO", "RF", "SH", "SH",
"DO", "OT", "DO", "OT", "DO", "OT", "RF", "RM", "RM", "DM", "PE",
"PM", "PE", "RM", "RM", "SH", "OL", "SH", "RF", "OL", "DM", "NL",
"PE", "PE", "RM", "RM", "RM", "SH", "RM", "RM", "RM", "RM", "DM",
"DO", "DS", "OL", "RM", "PE", "RM", "DM", "DM", "RM", "NL", "OT",
"OL", "DM", "RM", "RM", "DM", "AH", "DS", "DM", "RM", "PE", "OT",
"RM", "RM", "DM", "DM", "PE", "DM", "RM", "DM", "PE", "RM", "RM",
"DM", "RM", "OL", "OT", "DM", "DM", "DM", "OT", "PE", "DO", "DM",
"OL", "RM", "RM", "DM", "OL", "RM", "RM", "RM", "PE", "NL", "OT",
"PE", "DM", "RM", "DM", "PM", "OT", "RF", "DM", "OL", "DM", "RM",
"RM", "AH", "DM", "DM", "RM", "DM", "DM", "RM", "DO", "PE", "DM",
"PE", "RM", "RM", "DO", "PE", "PM", "RF", "OL", "PE", "RM", "PE",
"OL", "RM", "PM", "SH", "NL", "RF", "RM", "RM", "NL", "AH", "AH",
"PE", "AH", "RM", "PE", "RM", "DO", "PM", "RF", "RM", "RM", "DM",
"DM", "OL", "PE", "DO", "RM", "DO", "PE", "PE", "RM", "DM", "PM",
"DS", "PE", "RM", "DO", "DM", "RF", "RM", "RM", "OT", "OL", "DO",
"DM", "RM", "OT", "PE", "RM", "PE", "DO", "DS", "DO", "DO", "DM",
"DM", "OT", "PM", "RM", "RM", "RM", "RM", "PE", "RF", "RM", "OT",
"RM", "DM", "SH", "DO", "SH", "DM", "RM", "RM", "DM", "RM", "OT",
"RM", "DM", "DO", "PE", "RF", "DM", "RM", "PE", "RF", "RM", "RM",
"RM", "PE", "AH", "NL", "PE", "NL", "RM", "NL", "DS", "RM", "RM",
"RM", "RM", "RM", "DM", "DM", "RM", "PE", "DM", "RM", "PE", "RM",
"DM", "DM", "DM", "RF", "RM", "OL", "RM", "RM", "OT", "PE", "PE",
"DM", "RM", "RM", "DM", "AH", "PE", "OL", "RM", "PE", "RM", "DM",
"RM", "DM", "SH", "RM", "DM", "OL", "RM", "OT", "DM", "DM", "DO",
"RM", "PE", "DO", "DM", "OT", "DM", "OL", "PE", "OL", "RM", "PE",
"RM", "DM", "RM", "RM", "DM", "DM", "DM", "OL", "PE", "OL", "OT",
"RM", "RM", "RM", "OL", "DM", "OL", "OL", "RM", "PM", "RM", "DM",
"DM", "DM", "DM", "RM", "NL", "PE", "OT", "RM", "OT", "NL", "RM",
"NL", "PE", "RM", "RM", "RM", "PE", "OL", "RM", "RM", "RM", "PM",
"RM", "RM", "DO", "DS", "RM", "PE", "RM", "OL", "PE", "PM", "PE",
"PE", "SH", "DS", "RM", "DM", "RM", "RM", "PE", "RM", "PE", "RM",
"DS", "PE", "PE", "RM", "RF", "RM", "PE", "DM", "DM", "RM", "SH",
"PE", "RM", "RF", "OL", "DO", "RM", "OT", "RM", "RM", "RM", "PE",
"RM", "RM", "OT", "PM", "RM", "RM", "SH", "RM", "PE", "RM", "OT",
"DM", "OL", "DO", "RM", "RM", "RM", "RM", "SH", "RM", "NL", "OL",
"DO", "PP", "PE", "OT", "RM", "DO", "DM", "PE", "SH", "PE", "RM",
"PE", "RF", "OL", "PE", "NL", "PE", "RM", "RM", "AH", "RM", "DM",
"SH", "DO", "DM", "SH", "DM", "DM", "OL", "RM", "RF", "DS", "DM",
"RM", "RM", "RM", "OT", "NL", "DM", "RF", "DM", "RM", "RM", "PE",
"RM", "DM", "DS", "PE", "PE", "DM", "RM", "SS", "DM", "DM", "DM",
"RM", "SS", "DM", "RM", "RM", "RM", "RM", "DM", "PM", "DM", "DM",
"RM", "RM", "SH", "PM", "RM", "DM", "DM", "SH", "OL", "PP", "PE",
"DO", "PE", "NL", "NL", "SH", "DM", "OL", "RM", "DS", "RM", "PE",
"PE", "RF", "SH", "DM", "DM", "RM", "DM", "RM", "PE", "DO", "SS",
"RM", "PP", "DM", "PP", "DM", "DS", "RM", "DM", "DO", "RM", "RM",
"RM", "DM", "OT", "DM", "PE", "RM", "OL", "RM", "DM", "OL", "DM",
"RM", "RM", "OL", "DM", "RM", "RF", "RM", "DM", "PP", "OL", "PP",
"RF", "PP", "DO", "RM", "OL", "RM", "PP", "DO", "RF", "RM", "RM",
"PE", "SH", "NL", "DM", "DM", "PE", "RM", "RM", "PE", "RM", "RF",
"NL", "PE", "SH", "DM", "RM", "RM", "RM", "RF", "OT", "RM", "RM",
"PE", "RM", "RM", "RM", "NL", "RM", "RM", "RM", "RM", "DS", "DO",
"SH", "RF", "NL", "DO", "DM", "AH", "RM", "PE", "RM", "RM", "RM",
"OT", "RM", "RM", "RM", "RM", "DM", "PM", "PE", "RM", "DM", "PP",
"DS", "PE", "PE", "DM", "RM", "RM", "OT", "AH", "DM", "RM", "NL",
"PE", "RM", "RM", "NL", "PE", "DO", "OT", "NL", "PE", "SH", "NL",
"PE", "DM", "RF", "DO", "DM", "OT", "DS", "PE", "RM", "DM", "OT",
"DS", "PE", "RM", "DO", "DM", "SH", "RM", "RM", "OL", "RF", "OL",
"PM", "NL", "DO", "DM", "RM", "PE", "DM", "NL", "PM", "PE", "DO",
"DM", "PE", "RM", "SH", "RM", "DO", "PE", "RM", "RM", "NL", "OT",
"RM", "SH", "DO", "DM", "PM", "DO", "PM", "NL", "OL", "PP", "SH",
"PP", "RM", "PP", "DM", "SH", "DM", "PE", "RM", "DM", "RM", "DS",
"DM", "DM", "DM", "NL", "SS", "DM", "PE", "RM", "RM", "PE", "RM",
"PE", "OL", "RM", "DM", "OT", "RM", "DM", "DM", "PE", "DM", "DM",
"RF", "RM", "RM", "DM", "PE", "DM", "DM", "DM", "DM", "SH", "RF",
"RM", "DM", "RM", "DM", "RM", "OT", "SH", "RM", "AH", "NL", "PE",
"RM", "DO", "PE", "RM", "PM", "PE", "PM", "RM", "NL", "PE", "NL",
"RM", "DM", "RM", "RM", "SH", "RM", "DO", "RM", "NL", "AH", "PE",
"DM", "RF", "NL", "RM", "PM", "AH", "DS", "RM", "RF", "DO", "RM",
"DO", "DM", "RM", "RM", "PE", "SH", "PM", "PE", "RM", "DM", "RM",
"RM", "OT", "PE", "PE", "OT", "PE", "NL", "SH", "DS", "RM", "RM",
"DM", "RM", "SH", "RM", "SS", "DM", "DM", "SS", "SH", "RF", "PE",
"SH", "DO", "DM", "DS", "RM", "DM", "DM", "PE", "AH", "OL", "PE",
"RM", "RM", "RM", "DM", "DO", "PE", "AH", "RM", "DM", "RM", "SS",
"RM", "DM", "DM", "NL", "DM", "DM", "OL", "DM", "RM", "PP", "RM",
"PE", "DM", "PE", "DM", "DM", "PE", "DM", "OL", "DM", "DM", "RM",
"PE", "PE", "DM", "RM", "RM", "RM", "PE", "SS", "RF", "DO", "SH",
"NL", "RM", "NL", "PM", "RM", "SS", "SH", "RM", "AH", "NL", "NL",
"RF", "DM", "OX", "RM", "RM", "SH", "RM", "AH", "NL", "AH", "RF",
"DM", "RM", "DS", "RM", "PE", "SS", "DM", "RM", "PM", "NL", "DO",
"DS", "OL", "SS", "OT", "RM", "AH", "NL", "SS", "AH", "RF", "PE",
"RM", "DM", "PE", "SH", "NL", "RM", "DM", "DM", "DM", "SH", "DO",
"PE", "DM", "RM", "OT", "RM", "RM", "OT", "DM", "PE", "DO", "DS",
"AH", "DM", "DM", "DM", "DM", "PE", "AH", "PP", "SS", "SH", "SS",
"RM", "DM", "DM", "PP", "DM", "RM", "DM", "RM", "SH", "DM", "OL",
"DO", "RM", "NL", "RF", "SS", "DM", "RM", "RM", "OT", "DM", "PP",
"DM", "RM", "DM", "OT", "OT", "OT", "PP", "PE", "DM", "PE", "PP",
"SH", "RM", "NL", "OT", "DM", "RM", "DO", "NL", "DS", "RM", "DM",
"DM", "RM", "DM", "DM", "DM", "DO", "NL", "PE", "DO", "PP", "PE",
"PE", "PM", "SH", "PP", "RM", "OT", "DO", "PE", "DO", "DM", "RM",
"PP", "DM", "DM", "OT", "RM", "DO", "DS", "DO", "OL", "DM", "DM",
"DM", "RM", "DM", "DM", "RF", "DM", "DO", "DM", "SS", "RM", "PP",
"DM", "DM", "PE", "RM", "PP", "DM", "DM", "DM", "PE", "NL", "DM",
"PP", "DM", "DM", "OT", "AH", "RM", "DM", "NL", "DM", "DM", "RM",
"OT", "DO", "DM", "DM", "DM", "DM", "PP", "OL", "OT", "DO", "PP",
"PF", "DO", "OT", "PF", "SH", "PP", "OT", "DO", "OT", "DO", "DM",
"OT", "PE", "DM", "OT", "OT", "SS", "OT", "DO", "DS", "DM", "DM",
"OT", "PE", "NL", "PP", "DO", "OT", "PE", "SH", "DO", "DO", "PE",
"DM", "DO", "DM", "OT", "NL", "DM", "PP", "DM", "DM", "PP", "DO",
"DM", "DM", "SH", "DO", "SH", "DM", "OT", "DM", "DM", "PP", "DO",
"DM", "AH", "PP", "DM", "OL", "DM", "DM", "DM", "NL", "DM", "DM",
"OT", "DO", "DO", "AH", "DM", "PE", "OT", "DM", "OT", "OT", "OT",
"DM", "DM", "PE", "DM", "OL", "PE", "DO", "DM", "PP", "SH", "OT",
"DS", "SH", "DM", "DM", "RF", "OT", "DM", "DO", "RM", "PP", "NL",
"RM", "RM", "DM", "SS", "DM", "SH", "DM", "DM", "RF", "DM", "OT",
"PE", "DO", "PP", "DO", "PE", "RM", "DM", "NL", "PP", "PP", "DM",
"OT", "OT", "RM", "DO", "PE", "PP", "DM", "DM", "PE", "OT", "PE",
"PF", "PF", "AH", "DM", "RM", "PF", "DO", "DO", "OT", "AH", "PE",
"PE", "DM", "RM", "DM", "DM", "DO", "DS", "NL", "DM", "RM", "DM",
"DO", "OT", "DM", "PE", "PE", "RM", "PP", "RM", "RM", "RM", "DM",
"RM", "OT", "BA", "BA", "PE", "PF", "OT", "RM", "RM", "PE", "NL",
"RF", "RM", "RM", "PE", "DO", "OT", "RM", "PE", "RM", "DO", "NL",
"PE", "RM", "OT", "RM", "DO", "PE", "NL", "RF", "OT", "PH", "RM",
"DM", "RM", "PF", "PE", "DS", "RM", "DO", "RM", "RM", "OT", "PF",
"NL", "OT", "NL", "DO", "RM", "PE", "DM", "PP", "DO", "DO", "RF",
"PE", "RM", "DO", "PE", "PE", "OT", "SF", "DM", "DO", "RM", "DM",
"DO", "PF", "DO", "DM", "RM", "SF", "OT", "DM", "OT", "DM", "RM",
"OL", "PE", "OL", "AH", "OT", "DM", "OL", "PP", "DM", "RM", "RM",
"DM", "OL", "AH", "DM", "OT", "RM", "PE", "DM", "DM", "OT", "DM",
"DM", "SH", "OT", "RF", "DM", "DS", "OT", "PF", "RM", "PP", "OT",
"PE", "DM", "RM", "DO", "DM", "DM", "DM", "RM", "DM", "OT", "RM",
"PP", "OL", "DO", "DO", "DM", "DO", "PE", "DM", "RM", "PP", "DM",
"RM", "RM", "RM", "PP", "RM", "RM", "DM", "DO", "OL", "PE", "OT",
"SF", "SF", "PF", "OT", "RM", "RF", "DO", "RM", "RM", "NL", "RM",
"DM", "PE", "PE", "DO", "PE", "OT", "RM", "DO", "RM", "RM", "RM",
"RM", "RM", "DS", "RM", "PF", "PF", "DO", "DO", "RM", "DM", "DM",
"RM", "RM", "RM", "DO", "RM", "RM", "DO", "PH", "RM", "RM", "RM",
"RM", "RM", "RM", "NL", "PE", "RM", "RF", "RM", "PE", "PE", "OT",
"RM", "DO", "RM", "RM", "RF", "PE", "RM", "RM", "DM", "DO", "PE",
"PE", "DM", "RM", "SF", "RM", "DM", "RM", "RM", "DM", "DO", "PE",
"DO", "RM", "DM", "RM", "DO", "DM", "RM", "DM", "NL", "DM", "DM",
"RM", "DM", "DM", "DM", "RM", "RM", "DM", "DO", "PE", "DM", "OT",
"DM", "DM", "PE", "RM", "BA", "RM", "DM", "DM", "RM", "DM", "DO",
"DM", "DM", "RM", "DO", "OT", "DM", "DS", "RM", "DM", "RM", "DO",
"RF", "DO", "RM", "RM", "DM", "DM", "DM"), sex = c("M", "M",
"F", "M", "M", "M", "F", "M", "F", "F", "F", "M", "M", "", "F",
"F", "F", "M", "", "F", "F", "F", "M", "M", "M", "M", "M", "M",
"M", "F", "F", "F", "F", "", "F", "F", "F", "M", "F", "M", "F",
"F", "M", "F", "M", "M", "M", "F", "F", "F", "F", "F", "M", "M",
"M", "M", "", "M", "M", "M", "M", "M", "M", "M", "F", "F", "M",
"F", "M", "F", "F", "M", "F", "M", "F", "F", "", "M", "F", "M",
"F", "F", "F", "F", "F", "F", "F", "F", "F", "M", "F", "M", "",
"F", "M", "M", "M", "M", "M", "F", "F", "F", "F", "M", "M", "",
"", "M", "M", "", "F", "M", "F", "F", "M", "F", "F", "M", "M",
"M", "", "F", "M", "M", "M", "F", "M", "M", "F", "F", "M", "F",
"M", "F", "F", "F", "F", "M", "M", "M", "M", "F", "M", "M", "F",
"F", "M", "M", "M", "M", "M", "M", "F", "F", "", "M", "M", "M",
"M", "M", "M", "F", "F", "F", "F", "M", "M", "M", "M", "F", "",
"F", "F", "M", "M", "M", "F", "M", "M", "M", "M", "M", "F", "M",
"F", "F", "M", "F", "F", "M", "M", "F", "", "", "M", "F", "M",
"M", "M", "F", "M", "F", "M", "F", "M", "F", "F", "M", "F", "F",
"F", "", "F", "", "F", "F", "F", "M", "M", "M", "", "M", "F",
"", "", "M", "", "M", "M", "", "", "M", "M", "M", "F", "F", "F",
"M", "M", "F", "", "M", "F", "F", "M", "M", "M", "M", "M", "F",
"M", "F", "M", "F", "M", "M", "M", "F", "M", "F", "M", "M", "M",
"F", "M", "", "F", "F", "M", "F", "F", "", "M", "F", "M", "F",
"", "M", "F", "M", "", "", "M", "M", "M", "M", "M", "M", "M",
"F", "F", "F", "F", "F", "M", "", "", "M", "M", "F", "F", "F",
"M", "M", "F", "M", "M", "F", "M", "", "M", "F", "M", "", "M",
"M", "F", "M", "M", "F", "F", "F", "F", "F", "F", "F", "M", "F",
"M", "", "F", "M", "M", "F", "M", "F", "F", "M", "M", "", "",
"F", "F", "F", "M", "", "M", "", "M", "", "M", "", "F", "F",
"F", "M", "F", "F", "F", "", "M", "F", "", "M", "F", "F", "M",
"M", "F", "M", "M", "F", "F", "F", "M", "M", "F", "F", "M", "F",
"M", "M", "", "", "F", "F", "", "M", "F", "", "F", "M", "F",
"F", "F", "F", "", "M", "", "", "F", "F", "F", "M", "M", "M",
"F", "F", "F", "F", "F", "F", "M", "M", "F", "M", "F", "F", "M",
"F", "", "", "M", "F", "", "F", "F", "M", "F", "F", "", "", "M",
"M", "", "", "M", "M", "M", "M", "F", "", "M", "F", "F", "M",
"M", "M", "M", "", "F", "F", "M", "", "M", "", "F", "", "F",
"", "F", "F", "", "F", "F", "F", "M", "M", "F", "M", "", "F",
"M", "", "M", "M", "M", "F", "", "", "F", "", "M", "F", "", "",
"F", "", "M", "", "M", "F", "", "F", "M", "F", "", "M", "F",
"M", "M", "M", "M", "M", "M", "F", "M", "", "M", "F", "F", "M",
"M", "M", "", "F", "M", "", "", "M", "F", "F", "M", "M", "M",
"", "F", "", "", "M", "M", "F", "F", "F", "F", "", "F", "F",
"F", "F", "M", "M", "M", "F", "", "F", "F", "", "M", "", "F",
"M", "F", "F", "M", "M", "", "M", "F", "M", "M", "M", "M", "",
"M", "F", "F", "F", "M", "M", "M", "M", "F", "F", "F", "F", "F",
"M", "M", "M", "M", "F", "F", "F", "M", "F", "", "M", "F", "F",
"M", "M", "F", "F", "F", "", "F", "", "M", "F", "F", "", "",
"", "F", "M", "M", "M", "F", "F", "F", "F", "F", "M", "M", "F",
"M", "M", "M", "F", "F", "M", "F", "M", "M", "F", "F", "M", "F",
"M", "F", "F", "M", "", "F", "M", "M", "F", "M", "F", "M", "F",
"F", "M", "M", "F", "M", "M", "M", "F", "M", "F", "", "F", "M",
"F", "", "F", "F", "M", "M", "F", "", "M", "F", "", "F", "M",
"F", "F", "M", "", "M", "M", "M", "F", "F", "F", "M", "M", "F",
"M", "M", "F", "M", "M", "F", "M", "M", "F", "F", "F", "F", "M",
"F", "F", "M", "F", "", "M", "M", "F", "M", "F", "M", "M", "M",
"M", "M", "M", "F", "F", "M", "F", "", "M", "F", "M", "F", "F",
"M", "F", "F", "F", "M", "F", "M", "F", "", "M", "M", "F", "F",
"M", "", "M", "M", "", "M", "M", "M", "M", "M", "M", "M", "F",
"M", "F", "M", "M", "M", "F", "M", "M", "F", "M", "F", "F", "M",
"F", "M", "M", "F", "F", "F", "F", "", "F", "M", "F", "F", "F",
"F", "F", "F", "M", "F", "F", "F", "F", "F", "F", "F", "F", "F",
"M", "M", "M", "M", "", "M", "M", "M", "M", "M", "F", "F", "M",
"M", "M", "M", "F", "F", "F", "M", "F", "M", "M", "M", "F", "M",
"M", "F", "M", "F", "F", "", "F", "M", "F", "M", "M", "F", "F",
"F", "M", "F", "F", "F", "F", "M", "F", "M", "F", "M", "F", "M",
"F", "M", "F", "M", "M", "F", "F", "M", "F", "M", "M", "F", "F",
"F", "M", "F", "M", "F", "F", "M", "F", "M", "M", "F", "M", "M",
"F", "M", "M", "F", "F", "M", "M", "F", "F", "F", "M", "F", "M",
"F", "F", "M", "M", "M", "M", "M", "F", "F", "M", "M", "F", "F",
"F", "F", "M", "M", "F", "M", "M", "M", "", "F", "F", "F", "F",
"M", "F", "F", "F", "F", "F", "M", "M", "F", "F", "F", "F", "M",
"M", "F", "M", "M", "F", "M", "F", "M", "M", "F", "F", "F", "F",
"F", "F", "F", "M", "M", "M", "M", "M", "F", "M", "", "M", "M",
"M", "M", "M", "F", "M", "F", "M", "F", "F", "F", "F", "M", "M",
"F", "M", "M", "F", "F", "F", "F", "M", "M", "M", "F", "F", "F",
"F", "M", "F", "M", "M", "M", "F", "M", "M", "M", "F", "F", "M",
"F", "M", "F", "M", "M", "F", "M", "F", "F", "M", "M", "M", "M",
"F", "F", "F", "F", "F", "M", "F", "F", "F", "M", "F", "M", "F",
"F", "F", "F", "M", "F", "F", "F", "M", "M", "M", "F", "F", "F",
"M", "M", "F", "M", "F", "M", "F", "M", "F", "F", "F", "M", "F",
"M", "M", "M", "F", "F", "F", "M", "F", "F", "M", "M", "M", "F",
"M", "F", "F", "F", "F", "F", "M", "F", "M", "M", "F", "F", "M",
"F", "", "F", "M", "M", "F", "M", "F", "M", "M", "F", "M", "M",
"F", "M", "F", "M", "M", "F", "F", "M", "F", "M", "M", "F", "M",
"M", "M", "F", "M", "F", "M", "F", "F", "F", "M", "F", "M", "F",
"M", "F", "F", "M", "F", "F", "F", "F", "F", "M", "F", "M", "F",
"M", "F", "F", "M", "M", "", "F", "F", "F", "M", "F", "M", "M",
"M", "F", "F", "F", "F", "F", "F", "F", "F", "M", "F", "M", "F",
"M", "F", "F", "M", "M", "M", "M", "F", "F", "M", "F", "F", "F",
"M", "F", "M", "F", "F", "F", "M", "M", "M", "M", "M", "M", "F",
"F", "M", "F", "M", "F", "F", "M", "F", "M", "M", "M", "M", "M",
"F", "F", "M", "M", "F", "F", "F", "M", "F", "F", "F", "M", "M",
"M", "F", "F", "F", "M", "M", "F", "M", "F", "", "M", "F", "M",
"F", "F", "F", "F", "M", "M", "F", "F", "F", "M", "F", "F", "F",
"F", "M", "F", "F", "M", "M", "", "F", "F", "M", "M", "F", "F",
"M", "F", "F", "F", "F", "F", "M", "F", "F", "F", "F", "M", "F",
"M", "F", "F", "F", "F", "M", "F", "F", "F", "M", "F", "M", "F",
"M", "M", "M", "F", "", "F", "M", "F", "F", "F", "F", "M", "M",
"F", "M", "M", "M", "F", "F", "F", "F", "F", "", "F", "M", "F",
"M", "F", "F", "M", "", "F", "F", "M", "F", "F", "F", "M", "F",
"F", "M", "F", "M", "", "", "M", "F", "M", "F", "F", "F", "M",
"F", "M", "F", "F", "", "M", "F", "", "M", "M", "F", "F", "F",
"F", "F", "F", "F", "F", "", "F", "M", "M", "M", "M", "", "M",
"F", "F", "F", "M", "F", "F", "M", "F", "F", "F", "M", "F", "M",
"M", "F", "M", "F", "M", "F", "F", "F", "F", "F", "M", "F", "M",
"F", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "M", "M",
"F", "M", "F", "F", "F", "M", "F", "F", "", "F", "M", "M", "F",
"M", "F", "M", "M", "M", "M", "M", "M", "F", "M", "F", "F", "F",
"F", "M", "F", "M", "F", "F", "", "F", "F", "M", "F", "M", "M",
"F", "F", "M", "F", "F", "F", "M", "F", "F", "M", "M", "M", "F",
"F", "F", "F", "F", "M", "M", "F", "M", "F", "F", "F", "F", "F",
"F", "M", "M", "F", "M", "M", "F", "M", "M", "M", "M", "M", "F",
"F", "F", "F", "F", "M", "F", "F", "M", "M", "M", "M", "F", "F",
"F", "F", "F", "M", "M", "M", "F", "M", "M", "F", "M", "F", "M",
"F", "M", "M", "F", "F", "F", "M", "M", "F", "M", "F", "M", "M",
"M", "M", "F", "M", "M", "M", "F", "M", "F", "M", "M", "M", "F",
"M", "F", "F", "F", "M", "F", "M", "M", "M", "M", "M", "F", "F",
"F", "M", "F", "F", "F", "F", "M", "M", "F", "F", "M", "F", "",
"F", "", "F", "M", "M", "F", "F", "M", "F", "M", "M", "M", "F",
"F", "F", "M", "F", "M", "M", "M", "M", "F", "F", "F", "F", "M",
"M", "M", "F", "F", "F", "M", "F", "M", "F", "M", "F", "M", "F",
"F", "M", "F", "M", "F", "M", "M", "F", "F", "F", "M", "M", "F",
"M", "M", "F", "F", "M", "M", "F", "F", "F", "M", "M", "M", "F",
"M", "F", "M", "F", "M", "F", "F", "F", "F", "F", "M", "M", "F",
"M", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "F",
"F", "F", "M", "F", "M", "M", "M", "M", "F", "M", "M", "M", "M",
"F", "F", "F", "F", "F", "F", "M", "F", "F", "M", "F", "F", "M",
"M", "F", "F", "M", "M", "F", "M", "F", "M", "F", "F", "M", "M",
"F", "F", "M", "M", "M", "M", "F", "M", "M", "M", "F", "M", "F",
"M", "F", "F", "F", "M", "M", "M", "F", "M", "M", "M", "F", "M",
"F", "F", "M", "M", "M", "F", "M", "F", "F", "F", "F", "M", "M",
"F", "", "F", "M", "M", "F", "F", "M", "M", "M", "F", "M", "M",
"M", "F", "F", "M", "M", "M", "F", "F", "F", "F", "F", "F", "",
"M", "F", "M", "M", "F", "F", "M", "M", "M", "F", "F", "M", "M",
"M", "M", "F", "M", "F", "M", "F", "M", "F", "M", "F", "F", "F",
"M", "F", "F", "M", "F", "F", "M", "F", "M", "M", "M", "M", "F",
"M", "F", "F", "M", "F", "M", "M", "F", "M", "M", "M", "F", "F",
"F", "F", "M", "F", "F", "F", "M", "F", "F", "F", "M", "M", "M",
"F", "M", "M", "M", "F", "F", "F", "M", "F", "M", "F", "F", "M",
"F", "M", "F", "M", "F", "F", "F", "M", "F", "M", "M", "F", "M",
"M", "M", "M", "F", "M", "F", "M", "F", "F", "M", "M", "F", "F",
"M", "F", "F", "F", "F", "F", "M", "M", "F", "F", "F", "M", "M",
"F", "F", "M", "F", "F", "F", "M", "F", "F", "F", "M", "F", "F",
"M", "M", "F", "M", "M", "F", "M", "M", "F", "M", "M", "M", "F",
"M", "F", "M", "M", "M", "F", "F", "F", "M", "F", "M", "F", "M",
"M", "F", "F", "F", "M", "M", "M", "M", "F", "M", "F", "F", "M",
"F", "F", "M", "M", "F", "M", "M", "M", "M", "M", "F", "M", "F",
"F", "F", "M", "M", "F", "F", "F", "M", "F", "", "M", "F", "F",
"F", "M", "F", "M", "F", "M", "F", "F", "F", "F", "F", "F", "F",
"M", "M", "M", "F", "F", "F", "F", "M", "F", "F", "F", "F", "M",
"F", "M", "F", "M", "M", "M", "", "F", "M", "F", "F", "F", "F",
"M", "M", "F", "F", "M", "F", "F", "M", "M", "M", "M", "M", "F",
"F", "F", "M", "F", "M", "M", "M", "M", "M", "F", "M", "M", "M",
"F", "F", "M", "F", "M", "M", "M", "F", "M", "F", "F", "F", "M",
"M", "F", "F", "F", "F", "M", "F", "M", "F", "M", "M", "F", "M",
"F", "F", "M", "M", "M", "F", "F", "M", "M", "M", "M", "F", "M",
"F", "F", "M", "M", "F", "F", "F", "M", "M", "M", "F", "M", "F",
"M", "F", "F", "F", "F", "M", "F", "M", "F", "M", "M", "F", "F",
"F", "M", "F", "M", "M", "F", "M", "M", "M", "F", "M", "M", "M",
"M", "M", "F", "M", "M", "F", "F", "F", "M", "M", "F", "F", "M",
"F", "F", "F", "M", "M", "F", "M", "M", "M", "F", "F", "M", "M",
"F", "M", "F", "F", "M", "M", "M", "F", "F", "F", "F", "M", "F",
"M", "M", "F", "M", "M", "F", "M", "M", "F", "M", "F", "M", "M",
"M", "M", "F", "M", "M", "F", "M", "F", "F", "F", "F", "F", "",
"F", "M", "M", "M", "F", "F", "F", "M", "M", "M", "M", "M", "F",
"F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "M", "M", "F",
"M", "M", "F", "F", "M", "F", "F", "F", "F", "M", "F", "M", "M",
"M", "F", "F", "M", "F", "F", "F", "M", "F", "M", "F", "M", "F",
"M", "M", "F", "F", "M", "F", "F", "M", "M", "M", "F", "M", "M",
"M", "M", "M", "F", "M", "M", "F", "M", "F", "M", "M", "F", "F",
"F", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "M",
"M", "M", "M", "F", "M", "F", "M", "M", "F", "M", "M", "F", "M",
"F", "M", "F", "M", "F", "F", "F", "M", "M", "M", "M", "M", "F",
"F", "M", "F", "M", "F", "F", "F", "F", "", "M", "F", "F", "F",
"F", "F", "F", "F", "F", "F", "M", "M", "F", "M", "F", "M", "F",
"F", "F", "F", "F", "F", "F", "F", "M", "F", "F", "M", "M", "M",
"F", "M", "F", "M", "F", "M", "M", "F", "F", "F", "F", "M", "M",
"M", "F", "F", "M", "M", "F", "M", "M", "F", "F", "F", "M", "M",
"M", "F", "F", "F", "M", "F", "F", "F", "M", "M", "F", "F", "M",
"F", "M", "F", "M", "M", "M", "M", "F", "M", "F", "F", "M", "F",
"M", "F", "M", "M", "F", "M", "F", "M", "M", "F", "M", "F", "M",
"F", "M", "M", "M", "M", "M", "F", "M", "F", "M", "F", "M", "M",
"F", "F", "M", "F", "M", "M", "M", "F", "M", "F", "M", "F", "M",
"M", "M", "M", "M", "F", "M", "M", "F", "F", "M", "M", "M", "F",
"F", "F", "F", "M", "M", "F", "M", "F", "F", "M", "M", "F", "F",
"M", "F", "F", "M", "F", "F", "M", "M", "F", "M", "F", "F", "F",
"M", "F", "F", "M", "F", "M", "F", "F", "M", "M", "M", "M", "M",
"F", "M", "F", "", "F", "F", "M", "F", "M", "F", "F", "F", "F",
"F", "M", "M", "F", "M", "F", "M", "M", "F", "M", "F", "F", "M",
"F", "M", "M", "M", "M", "M", "M", "M", "M", "F", "F", "F", "F",
"F", "M", "F", "F", "M", "M", "M", "F", "M", "M", "F", "M", "M",
"M", "M", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "M",
"M", "M", "F", "M", "F", "M", "M", "F", "M", "F", "F", "M", "M",
"M", "M", "M", "M", "M", "M", "M", "M", "F", "M", "F", "M", "M",
"F", "F", "F", "M", "M", "M", "M", "F", "M", "M", "F", "M", "M",
"F", "M", "M", "F", "M", "M", "F", "M", "M", "F", "M", "M", "M",
"F", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "M", "M",
"M", "M", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M", "F",
"", "F", "M", "F", "F", "F", "M", "", "F", "F", "M", "M", "M",
"F", "M", "F", "M", "F", "F", "F", "M", "F", "F", "F", "M", "F",
"M", "F", "M", "M", "F", "F", "M", "F", "F", "F", "", "F", "M",
"F", "M", "F", "M", "M", "M", "M", "F", "F", "F", "F", "F", "M",
"F", "F", "M", "F", "M", "F", "M", "M", "F", "F", "F", "M", "F",
"M", "M", "F", "M", "M", "F", "", "M", "M", "F", "M", "M", "M",
"M", "F", "F", "F", "", "F", "M", "M", "M", "F", "F", "F", "M",
"M", "M", "M", "M", "M", "M", "F", "F", "M", "F", "M", "F", "M",
"M", "M", "M", "F", "M", "F", "M", "M", "M", "M", "F", "M", "M",
"", "M", "M", "F", "M", "M", "F", "M", "F", "M", "M", "F", "F",
"M", "M", "F", "F", "M", "F", "M", "M", "F", "M", "F", "F", "M",
"M", "M", "F", "F", "M", "M", "F", "F", "M", "M", "M", "F", "M",
"M", "F", "M", "M", "F", "M", "M", "M", "M", "M", "M", "", "M",
"F", "M", "M", "M", "M", "F", "M", "F", "F", "F", "F", "F", "F",
"M", "M", "F", "F", "M", "M", "F", "M", "M", "F", "M", "F", "F",
"M", "M", "M", "M", "F", "M", "M", "F", "F", "M", "M", "", "F",
"F", "F", "M", "F", "M", "M", "", "M", "F", "M", "F", "M", "F",
"M", "M", "F", "M", "M", "F", "F", "M", "F", "M", "M", "M", "M",
"F", "F", "M", "M", "M", "F", "F", "F", "M", "F", "M", "M", "M",
"M", "M", "M", "F", "M", "M", "M", "F", "F", "M", "M", "M", "F",
"M", "M", "F", "F", "M", "F", "M", "F", "M", "M", "M", "F", "M",
"M", "F", "F", "F", "M", "F", "F", "M", "M", "M", "M", "F", "M",
"F", "F", "F", "F", "", "M", "M", "M", "F", "F", "M", "F", "F",
"F", "F", "M", "F", "M", "M", "M", "M", "F", "F", "F", "M", "M",
"F", "M", "F", "F", "F", "M", "F", "F", "M", "M", "M", "F", "",
"M", "F", "F", "F", "M", "M", "F", "M", "F", "M", "M", "F", "F",
"M", "M", "M", "F", "M", "M", "F", "M", "F", "", "F", "M", "M",
"M", "F", "M", "M", "M", "M", "M", "F", "M", "M", "M", "F", "F",
"M", "M", "F", "M", "F", "F", "F", "F", "M", "M", "F", "F", "M",
"F", "F", "M", "M", "M", "M", "F", "M", "M", "M", "M", "F", "M",
"F", "M", "F", "M", "F", "M", "F", "M", "F", "M", "M", "F", "F",
"M", "M", "M", "M", "F", "M", "M", "M", "F", "M", "M", "M", "F",
"F", "F", "M", "M", "M", "M", "F", "F", "F", "M", "M", "", "M",
"F", "M", "F", "M", "M", "M", "M", "", "F", "F", "M", "M", "M",
"M", "F", "F", "F", "F", "M", "F", "M", "F", "F", "M", "M", "M",
"M", "F", "F", "M", "F", "M", "M", "M", "M", "M", "M", "F", "M",
"M", "M", "F", "F", "M", "M", "M", "M", "M", "M", "F", "M", "M",
"M", "", "F", "F", "F", "M", "F", "F", "M", "M", "F", "M", "F",
"M", "F", "M", "M", "M", "M", "F", "F", "F", "M", "M", "F", "F",
"F", "F", "M", "F", "M", "M", "", "F", "M", "M", "M", "", "F",
"F", "M", "M", "M", "F", "", "M", "M", "M", "M", "F", "F", "M",
"F", "M", "F", "F", "M", "F", "M", "M", "M", "M", "", "", "F",
"F", "M", "F", "F", "M", "M", "M", "M", "F", "M", "M", "M", "F",
"F", "F", "M", "M", "F", "F", "M", "F", "M", "F", "F", "M", "F",
"F", "F", "F", "F", "M", "M", "F", "F", "M", "F", "F", "F", "M",
"F", "F", "M", "M", "F", "M", "M", "F", "F", "F", "M", "F", "M",
"M", "M", "F", "M", "M", "M", "F", "M", "F", "M", "M", "M", "M",
"F", "F", "F", "M", "F", "M", "M", "F", "F", "M", "F", "F", "M",
"M", "M", "M", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M",
"M", "F", "M", "M", "M", "M", "F", "F", "F", "M", "F", "F", "M",
"F", "M", "M", "F", "M", "M", "F", "M", "M", "F", "M", "M", "F",
"M", "F", "M", "F", "F", "M", "M", "F", "F", "", "F", "F", "M",
"M", "M", "M", "F", "F", "F", "F", "F", "F", "M", "F", "M", "M",
"F", "F", "F", "M", "M", "F", "M", "M", "F", "F", "F", "M", "M",
"F", "M", "F", "M", "F", "M", "M", "F", "F", "F", "F", "F", "F",
"F", "M", "M", "F", "F", "F", "M", "F", "M", "M", "F", "M", "F",
"F", "M", "M", "M", "M", "F", "F", "M", "F", "M", "M", "F", "M",
"F", "M", "M", "F", "M", "F", "M", "F", "M", "F", "M", "M", "F",
"F", "M", "M", "F", "F", "M", "F", "M", "M", "F", "F", "F", "M",
"F", "M", "F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "M",
"M", "F", "F", "M", "M", "F", "F", "M", "M", "F", "M", "F", "F",
"F", "F", "F", "F", "M", "M", "F", "M", "M", "M", "F", "M", "F",
"F", "M", "M", "M", "M", "F", "M", "M", "M", "F", "M", "M", "F",
"F", "F", "F", "M", "M", "M", "F", "M", "M", "F", "F", "F", "F",
"F", "M", "M", "M", "F", "F", "M", "M", "M", "M", "M", "M", "F",
"M", "F", "M", "M", "F", "M", "M", "M", "M", "F", "F", "F", "M",
"F", "M", "M", "F", "M", "F", "M", "M", "F", "F", "M", "M", "F",
"M", "M", "M", "M", "M", "M", "F", "M", "M", "M", "F", "M", "M",
"M", "F", "M", "F", "F", "F", "F", "F", "M", "M", "F", "M", "M",
"M", "F", "M", "M", "F", "F", "M", "F", "F", "M", "M", "F", "M",
"F", "F", "F", "F", "F", "F", "M", "F", "M", "F", "F", "F", "M",
"M", "M", "F", "M", "M", "F", "F", "M", "F", "F", "M", "F", "M",
"M", "M", "M", "M", "F", "F", "M", "F", "F", "F", "F", "F", "F",
"F", "F", "M", "M", "M", "F", "F", "M", "F", "F", "M", "F", "F",
"M", "F", "M", "M", "F", "M", "M", "M", "M", "F", "M", "F", "F",
"F", "F", "M", "M", "F", "F", "M", "M", "M", "M", "M", "M", "M",
"M", "F", "F", "F", "M", "M", "F", "F", "M", "M", "F", "M", "F",
"F", "F", "M", "M", "M", "F", "F", "M", "M", "F", "F", "M", "F",
"F", "F", "F", "M", "M", "M", "M", "M", "M", "F", "M", "F", "M",
"M", "M", "F", "M", "M", "F", "F", "", "M", "F", "M", "F", "F",
"M", "F", "F", "F", "F", "F", "F", "M", "M", "F", "F", "M", "M",
"M", "M", "M", "M", "F", "F", "M", "F", "F", "F", "F", "M", "F",
"F", "M", "M", "M", "M", "F", "F", "M", "M", "M", "F", "M", "F",
"M", "F", "F", "M", "F", "F", "F", "M", "F", "M", "M", "F", "M",
"M", "F", "F", "F", "M", "M", "M", "M", "F", "M", "M", "M", "F",
"F", "F", "M", "M", "M", "M", "M", "F", "M", "F", "M", "M", "F",
"M", "F", "M", "M", "M", "M", "F", "M", "F", "M", "F", "M", "M",
"M", "F", "M", "M", "F", "F", "F", "M", "M", "M", "M", "F", "F",
"M", "F", "F", "F", "M", "F", "F", "M", "F", "M", "F", "M", "F",
"F", "M", "F", "M", "M", "M", "M", "M", "F", "F", "M", "M", "F",
"M", "M", "F", "M", "M", "F", "F", "M", "F", "M", "M", "M", "F",
"M", "M", "F", "F", "F", "M", "M", "F", "F", "M", "M", "F", "F",
"M", "M", "M", "F", "F", "M", "F", "F", "F", "M", "F", "M", "F",
"F", "F", "M", "M", "M", "M", "M", "M", "F", "M", "F", "F", "F",
"M", "F", "F", "M", "F", "M", "F", "M", "M", "M", "F", "F", "M",
"F", "F", "M", "F", "F", "M", "F", "F", "M", "F", "M", "F", "M",
"F", "F", "F", "M", "M", "M", "F", "F", "F", "M", "F", "M", "F",
"M", "M", "F", "M", "F", "F", "F", "M", "M", "M", "F", "F", "F",
"", "F", "M", "F", "F", "", "M", "M", "M", "F", "M", "M", "M",
"F", "F", "M", "M", "M", "", "M", "M", "F", "M", "M", "M", "F",
"F", "M", "M", "F", "M", "M", "M", "M", "M", "M", "M", "M", "M",
"M", "M", "F", "M", "F", "F", "F", "F", "F", "F", "F", "M", "M",
"M", "F", "F", "F", "M", "M", "M", "M", "F", "M", "M", "F", "M",
"F", "M", "M", "M", "F", "M", "M", "M", "M", "M", "F", "M", "F",
"M", "M", "F", "M", "M", "F", "F", "F", "", "F", "M", "F", "F",
"F", "F", "M", "M", "F", "M", "F", "", "F", "M", "M", "M", "M",
"M", "", "F", "M", "M", "M", "F", "M", "F", "F", "F", "F", "F",
"M", "M", "M", "M", "M", "F", "M", "M", "F", "M", "F", "F", "M",
"M", "M", "M", "M", "M", "M", "M", "F", "M", "F", "F", "M", "M",
"M", "F", "M", "F", "M", "F", "M", "M", "M", "F", "F", "M", "M",
"M", "F", "F", "M", "M", "F", "F", "M", "F", "M", "M", "M", "M",
"M", "M", "F", "M", "M", "M", "M", "M", "F", "M", "M", "M", "F",
"", "M", "F", "M", "M", "F", "M", "F", "F", "F", "F", "M", "F",
"M", "F", "F", "F", "M", "F", "M", "M", "M", "M", "M", "M", "F",
"M", "M", "F", "F", "F", "F", "M", "F", "M", "F", "F", "M", "F",
"M", "F", "M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "F",
"F", "M", "F", "", "M", "F", "M", "F", "M", "F", "F", "F", "",
"F", "F", "M", "M", "M", "M", "M", "F", "M", "M", "F", "F", "M",
"F", "F", "F", "M", "M", "M", "F", "F", "M", "F", "M", "M", "F",
"F", "M", "F", "F", "F", "F", "M", "F", "M", "M", "M", "M", "M",
"M", "M", "M", "M", "F", "M", "M", "M", "F", "M", "M", "M", "M",
"F", "M", "M", "M", "M", "M", "M", "F", "F", "F", "M", "F", "M",
"F", "F", "M", "F", "F", "M", "F", "F", "F", "M", "M", "M", "M",
"M", "M", "M", "F", "F", "F", "F", "F", "F", "F", "F", "M", "M",
"F", "", "F", "F", "M", "F", "M", "F", "F", "M", "M", "F", "M",
"M", "F", "M", "M", "M", "M", "F", "F", "F", "M", "F", "M", "M",
"F", "F", "F", "F", "M", "F", "F", "M", "M", "M", "M", "F", "M",
"F", "M", "M", "M", "F", "M", "M", "M", "F", "M", "F", "M", "F",
"M", "M", "F", "F", "F", "M", "M", "M", "M", "F", "F", "F", "F",
"M", "F", "F", "F", "F", "M", "F", "M", "M", "M", "M", "F", "F",
"F", "M", "M", "F", "M", "F", "M", "M", "M", "M", "F", "M", "M",
"", "M", "F", "F", "F", "M", "F", "F", "M", "F", "F", "F", "M",
"F", "M", "M", "M", "F", "F", "F", "M", "M", "M", "M", "M", "M",
"F", "M", "F", "M", "M", "M", "F", "M", "F", "F", "M", "F", "F",
"M", "F", "M", "M", "F", "F", "F", "M", "F", "F", "F", "M", "M",
"F", "M", "F", "F", "M", "F", "M", "F", "F", "M", "M", "M", "F",
"M", "M", "F", "F", "F", "F", "M", "F", "F", "F", "F", "M", "F",
"M", "F", "F", "F", "M", "M", "M", "M", "F", "F", "M", "M", "M",
"F", "M", "F", "F", "M", "", "M", "M", "M", "M", "F", "M", "M",
"F", "M", "F", "M", "F", "F", "M", "F", "F", "F", "M", "M", "M",
"F", "M", "M", "M", "M", "M", "F", "M", "F", "M", "F", "M", "M",
"F", "M", "M", "F", "M", "F", "F", "M", "M", "M", "M", "F", "M",
"F", "", "M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "F",
"F", "F", "F", "M", "F", "M", "F", "F", "M", "F", "F", "M", "F",
"F", "F", "F", "F", "M", "F", "M", "F", "M", "M", "M", "F", "M",
"F", "M", "M", "M", "F", "M", "M", "M", "F", "M", "M", "F", "M",
"F", "M", "F", "M", "F", "F", "F", "F", "M", "M", "F", "F", "M",
"M", "M", "F", "F", "F", "M", "M", "M", "F", "F", "M", "M", "M",
"F", "F", "F", "M", "F", "F", "M", "F", "M", "M", "M", "F", "M",
"F", "F", "F", "M", "M", "M", "F", "F", "F", "M", "F", "F", "F",
"F", "M", "M", "F", "M", "F", "M", "M", "M", "F", "", "F", "M",
"F", "M", "M", "M", "F", "M", "M", "F", "F", "M", "F", "M", "M",
"F", "M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "F",
"M", "M", "F", "M", "F", "M", "M", "M", "F", "F", "F", "M", "F",
"M", "M", "F", "M", "F", "F", "M", "F", "F", "F", "M", "F", "F",
"M", "M", "M", "F", "M", "F", "M", "M", "M", "M", "M", "F", "M",
"F", "M", "F", "F", "M", "M", "F", "F", "M", "M", "F", "M", "M",
"M", "M", "M", "M", "F", "M", "F", "M", "M", "F", "F", "M", "F",
"M", "F", "M", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M",
"M", "F", "F", "F", "F", "F", "F", "F", "M", "M", "F", "M", "M",
"M", "M", "F", "M", "F", "F", "", "M", "F", "F", "F", "F", "F",
"M", "F", "F", "F", "M", "M", "M", "M", "M", "F", "M", "F", "F",
"M", "M", "F", "F", "M", "M", "F", "F", "F", "M", "M", "M", "F",
"M", "M", "M", "M", "F", "F", "M", "F", "F", "F", "F", "F", "M",
"M", "F", "M", "M", "M", "M", "M", "F", "M", "M", "F", "F", "M",
"M", "F", "M", "F", "F", "M", "M", "F", "F", "M", "M", "M", "M",
"M", "M", "F", "F", "F", "F", "M", "F", "M", "F", "F", "M", "M",
"F", "M", "M", "F", "M", "M", "M", "M", "M", "M", "M", "F", "F",
"M", "M", "F", "M", "", "F", "M", "F", "M", "F", "M", "F", "M",
"M", "F", "M", "F", "F", "F", "M", "F", "M", "F", "F", "M", "F",
"M", "M", "F", "M", "M", "F", "M", "F", "M", "F", "M", "F", "F",
"F", "M", "M", "M", "F", "M", "M", "M", "M", "M", "M", "M", "F",
"M", "M", "F", "M", "M", "M", "F", "M", "F", "F", "F", "F", "M",
"F", "F", "M", "F", "F", "M", "M", "F", "F", "F", "F", "F", "M",
"M", "M", "F", "F", "F", "M", "F", "M", "F", "F", "F", "M", "F",
"F", "M", "F", "M", "F", "", "F", "F", "M", "M", "M", "M", "M",
"M", "M", "F", "M", "F", "F", "M", "M", "M", "M", "M", "M", "M",
"F", "F", "F", "M", "M", "F", "M", "M", "M", "M", "M", "M", "F",
"F", "F", "F", "M", "F", "F", "F", "F", "F", "F", "F", "M", "M",
"M", "M", "F", "F", "M", "M", "M", "M", "M", "M", "F", "F", "F",
"M", "M", "F", "F", "F", "M", "M", "F", "F", "F", "F", "M", "M",
"F", "M", "M", "M", "M", "M", "M", "M", "F", "M", "M", "M", "M",
"F", "F", "M", "M", "F", "F", "F", "M", "F", "F", "M", "M", "F",
"F", "M", "F", "M", "F", "M", "M", "M", "F", "F", "M", "M", "F",
"M", "M", "M", "M", "F", "F", "F", "M", "M", "F", "", "M", "F",
"M", "F", "F", "M", "M", "M", "M", "M", "F", "F", "F", "F", "F",
"M", "F", "M", "F", "F", "M", "", "F", "F", "M", "F", "M", "M",
"M", "M", "M", "M", "F", "M", "M", "F", "F", "M", "M", "F", "M",
"M", "M", "M", "F", "F", "F", "F", "F", "F", "M", "M", "M", "M",
"M", "F", "F", "M", "F", "M", "M", "M", "M", "F", "F", "M", "M",
"", "M", "F", "M", "M", "M", "F", "M", "M", "F", "F", "M", "",
"M", "F", "F", "F", "M", "F", "M", "F", "F", "M", "M", "F", "M",
"F", "M", "M", "F", "F", "M", "F", "M", "M", "F", "M", "M", "M",
"M", "F", "M", "M", "M", "M", "M", "M", "M", "M", "F", "F", "F",
"M", "F", "F", "F", "M", "M", "M", "M", "M", "F", "F", "F", "F",
"M", "F", "M", "M", "M", "F", "F", "F", "F", "M", "M", "M", "F",
"M", "M", "M", "M", "M", "F", "M", "M", "M", "M", "M", "F", "F",
"M", "M", "M", "F", "M", "M", "M", "F", "M", "F", "M", "F", "M",
"F", "M", "M", "F", "M", "M", "M", "M", "F", "F", "M", "F", "F",
"M", "M", "M", "M", "M", "M", "F", "F", "F", "M", "M", "M", "M",
"F", "M", "F", "F", "F", "M", "M", "M", "M", "M", "F", "M", "M",
"M", "F", "F", "M", "M", "M", "F", "M", "M", "F", "M", "F", "M",
"F", "M", "M", "M", "M", "F", "M", "M", "M", "M", "F", "F", "F",
"M", "M", "M", "M", "M", "M", "F", "F", "M", "F", "M", "M", "M",
"M", "F", "F", "F", "M", "F", "M", "M", "F", "F", "F", "F", "M",
"F", "M", "F", "M", "F", "M", "M", "F", "F", "M", "M", "F", "M",
"F", "M", "F", "F", "", "M", "M", "F", "M", "F", "M", "M", "M",
"F", "M", "M", "M", "M", "M", "M", "M", "M", "F", "M", "M", "F",
"M", "F", "F", "M", "F", "F", "M", "M", "M", "F", "F", "M", "F",
"M", "M", "F", "M", "M", "M", "M", "F", "M", "M", "M", "F", "M",
"F", "F", "M", "F", "M", "F", "M", "F", "F", "", "F", "M", "M",
"F", "F", "M", "F", "M", "F", "F", "F", "F", "M", "F", "M", "M",
"M", "F", "M", "M", "M", "F", "F", "F", "M", "M", "F", "F", "M",
"M", "F", "F", "M", "F", "M", "F", "F", "F", "M", "M", "F", "M",
"M", "M", "M", "M", "M", "M", "F", "M", "M", "M", "M", "F", "F",
"F", "M", "M", "M", "M", "M", "M", "F", "M", "F", "M", "M", "F",
"M", "M", "M", "M", "F", "M", "F", "F", "F", "F", "F", "M", "M",
"M", "M", "M", "F", "F", "F", "M", "M", "M", "", "M", "M", "M",
"M", "F", "M", "F", "M", "M", "F", "F", "F", "M", "F", "F", "F",
"F", "F", "M", "F", "M", "F", "M", "M", "F", "M", "F", "M", "F",
"M", "F", "M", "F", "F", "M", "M", "M", "M", "M", "F", "M", "M",
"F", "F", "F", "M", "F", "M", "F", "F", "F", "F", "F", "M", "M",
"M", "", "M", "F", "M", "F", "F", "M", "", "M", "F", "F", "F",
"F", "M", "", "F", "M", "M", "F", "M", "M", "F", "M", "", "M",
"", "M", "M", "F", "M", "M", "F", "F", "M", "", "M", "F", "M",
"M", "M", "F", "M", "", "M", "M", "F", "F", "M", "F", "", "F",
"M", "F", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "M",
"F", "F", "M", "M", "F", "M", "M", "F", "M", "F", "F", "M", "F",
"M", "M", "F", "M", "F", "M", "M", "M", "F", "M", "M", "F", "M",
"M", "F", "M", "F", "M", "F", "M", "M", "M", "M", "F", "M", "M",
"", "F", "F", "F", "F", "F", "F", "M", "F", "M", "F", "", "M",
"F", "M", "M", "M", "M", "M", "F", "F", "M", "M", "", "F", "F",
"M", "M", "M", "F", "M", "M", "M", "F", "", "M", "F", "M", "M",
"F", "M", "F", "F", "M", "M", "F", "F", "M", "F", "M", "M", "M",
"F", "M", "M", "F", "", "F", "M", "M", "M", "M", "", "F", "F",
"M", "F", "F", "F", "F", "M", "M", "M", "M", "F", "F", "M", "M",
"F", "M", "M", "F", "M", "M", "M", "F", "M", "M", "M", "M", "M",
"M", "M", "M", "M", "F", "M", "F", "F", "F", "F", "F", "F", "F",
"F", "F", "F", "M", "M", "M", "F", "F", "F", "F", "M", "M", "M",
"M", "M", "M", "F", "M", "M", "F", "F", "", "F", "M", "M", "M",
"F", "", "M", "F", "M", "F", "M", "M", "F", "F", "M", "M", "",
"F", "F", "F", "M", "", "M", "M", "M", "", "M", "M", "M", "F",
"F", "F", "", "F", "M", "M", "M", "M", "M", "M", "M", "M", "M",
"F", "M", "F", "M", "M", "M", "M", "F", "F", "M", "M", "M", "F",
"F", "M", "M", "M", "M", "M", "F", "F", "F", "F", "F", "M", "M",
"M", "M", "F", "F", "F", "F", "M", "M", "M", "F", "F", "M", "M",
"M", "F", "M", "M", "F", "M", "M", "F", "M", "M", "F", "F", "F",
"M", "F", "F", "M", "M", "M", "", "F", "F", "M", "F", "M", "M",
"F", "M", "F", "F", "M", "F", "F", "F", "F", "M", "M", "M", "F",
"F", "F", "F", "M", "F", "M", "F", "F", "M", "M", "F", "M", "M",
"M", "M", "M", "F", "M", "F", "F", "M", "M", "M", "M", "M", "F",
"M", "M", "M", "F", "M", "F", "F", "F", "M", "F", "F", "F", "M",
"F", "M", "F", "", "F", "F", "F", "F", "M", "F", "M", "F", "M",
"M", "", "M", "F", "F", "F", "M", "M", "M", "F", "M", "M", "F",
"F", "M", "F", "M", "F", "F", "F", "F", "M", "M", "F", "F", "M",
"M", "M", "F", "", "", "M", "M", "M", "M", "M", "M", "F", "M",
"F", "M", "M", "F", "F", "M", "M", "M", "F", "M", "F", "F", "",
"M", "M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "M",
"F", "M", "F", "F", "M", "F", "F", "M", "F", "F", "F", "M", "F",
"F", "F", "M", "M", "F", "M", "M", "F", "F", "M", "", "F", "M",
"F", "F", "M", "M", "M", "F", "M", "F", "F", "M", "M", "M", "F",
"F", "F", "", "F", "M", "F", "F", "M", "F", "M", "M", "F", "M",
"F", "M", "F", "F", "M", "F", "F", "F", "F", "M", "", "F", "M",
"F", "F", "F", "M", "M", "", "M", "F", "F", "F", "M", "F", "F",
"F", "M", "M", "M", "M", "M", "M", "F", "M", "M", "M", "M", "F",
"F", "M", "F", "F", "", "F", "M", "F", "M", "M", "M", "F", "M",
"F", "M", "F", "M", "F", "F", "M", "F", "F", "M", "F", "", "M",
"", "F", "M", "F", "F", "F", "F", "M", "F", "M", "F", "M", "M",
"M", "M", "M", "F", "M", "M", "F", "F", "M", "F", "M", "F", "F",
"M", "M", "F", "M", "M", "M", "M", "F", "M", "F", "F", "M", "M",
"M", "M", "F", "F", "M", "F", "M", "F", "M", "F", "F", "M", "F",
"M", "F", "M", "M", "M", "M", "F", "F", "", "F", "M", "F", "F",
"F", "M", "M", "M", "", "M", "M", "F", "M", "F", "F", "M", "M",
"M", "F", "M", "F", "M", "F", "F", "F", "M", "M", "M", "F", "M",
"F", "M", "M", "M", "F", "F", "M", "F", "", "M", "M", "F", "M",
"M", "M", "F", "M", "F", "M", "F", "F", "M", "M", "M", "F", "M",
"M", "M", "F", "M", "M", "", "M", "F", "M", "M", "F", "F", "M",
"F", "F", "F", "F", "M", "F", "F", "M", "M", "F", "M", "M", "M",
"M", "F", "M", "M", "F", "F", "F", "M", "F", "M", "F", "M", "M",
"F", "F", "M", "F", "F", "M", "F", "M", "M", "F", "M", "M", "F",
"M", "M", "F", "M", "F", "M", "F", "F", "M", "F", "M", "M", "M",
"F", "M", "M", "F", "F", "F", "M", "M", "M", "", "F", "F", "M",
"M", "F", "", "M", "F", "M", "F", "M", "M", "M", "F", "F", "M",
"M", "M", "F", "F", "M", "M", "F", "F", "M", "F", "M", "F", "M",
"M", "M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "F",
"F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "M", "F", "M",
"F", "F", "F", "M", "M", "M", "F", "F", "F", "F", "F", "M", "M",
"F", "M", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "F",
"M", "M", "F", "M", "M", "F", "F", "M", "M", "M", "M", "F", "M",
"M", "M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "F",
"M", "F", "M", "F", "F", "M", "F", "M", "M", "F", "M", "M", "F",
"F", "M", "M", "F", "M", "M", "F", "M", "F", "F", "M", "M", "F",
"F", "F", "M", "M", "M", "M", "M", "M", "M", "M", "M", "F", "M",
"M", "F", "F", "M", "M", "M", "F", "M", "F", "M", "M", "F", "M",
"F", "F", "M", "M", "M", "F", "M", "F", "F", "F", "F", "M", "M",
"F", "M", "F", "F", "M", "M", "", "F", "F", "F", "M", "M", "M",
"F", "F", "M", "F", "M", "M", "F", "F", "M", "F", "M", "M", "M",
"M", "F", "F", "M", "M", "F", "M", "F", "F", "F", "M", "M", "F",
"F", "F", "F", "F", "F", "F", "F", "F", "M", "F", "M", "F", "F",
"F", "", "M", "M", "M", "F", "M", "F", "M", "M", "M", "M", "M",
"M", "F", "M", "M", "F", "M", "F", "M", "M", "F", "M", "F", "M",
"F", "M", "M", "F", "", "F", "F", "F", "F", "M", "M", "M", "M",
"M", "F", "M", "M", "M", "M", "M", "M", "F", "M", "F", "M", "F",
"M", "M", "F", "M", "M", "F", "M", "M", "M", "F", "F", "F", "F",
"M", "M", "F", "F", "M", "M", "M", "M", "F", "F", "M", "F", "F",
"M", "M", "M", "M", "M", "M", "F", "", "M", "F", "F", "M", "M",
"F", "F", "M", "M", "M", "F", "M", "M", "F", "", "F", "F", "M",
"M", "F", "F", "M", "F", "F", "F", "M", "M", "M", "M", "F", "M",
"M", "F", "F", "F", "F", "F", "M", "F", "M", "F", "M", "F", "M",
"M", "M", "F", "M", "F", "F", "M", "F", "F", "M", "M", "M", "M",
"F", "M", "F", "M", "F", "M", "F", "F", "F", "M", "M", "M", "M",
"F", "M", "M", "F", "M", "M", "M", "M", "M", "F", "M", "M", "F",
"M", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M", "M", "M",
"M", "F", "M", "M", "M", "M", "M", "F", "M", "F", "F", "F", "M",
"F", "M", "F", "F", "M", "M", "M", "M", "M", "F", "F", "M", "M",
"M", "F", "F", "F", "M", "F", "M", "F", "M", "F", "F", "M", "F",
"F", "", "M", "F", "F", "F", "F", "M", "F", "F", "M", "F", "F",
"M", "F", "M", "F", "M", "M", "M", "F", "F", "M", "M", "F", "F",
"F", "F", "M", "F", "F", "M", "F", "F", "M", "M", "F", "F", "M",
"M", "F", "M", "M", "F", "F", "M", "F", "F", "M", "F", "F", "F",
"M", "M", "", "F", "M", "F", "M", "F", "M", "F", "F", "M", "M",
"M", "F", "M", "M", "F", "M", "M", "F", "F", "M", "F", "F", "M",
"M", "M", "F", "F", "M", "F", "M", "F", "M", "M", "M", "F", "F",
"F", "M", "F", "F", "M", "F", "M", "F", "M", "F", "M", "F", "M",
"M", "F", "F", "M", "F", "M", "F", "M", "M", "M", "M", "F", "F",
"M", "M", "M", "F", "F", "F", "F", "F", "F", "F", "F", "M", "M",
"F", "F", "M", "F", "M", "F", "F", "M", "M", "F", "M", "F", "F",
"F", "M", "F", "M", "M", "F", "M", "M", "F", "M", "M", "M", "M",
"M", "F", "M", "M", "M", "M", "M", "F", "F", "F", "F", "F", "M",
"F", "F", "M", "F", "M", "F", "M", "F", "F", "M", "F", "M", "F",
"F", "F", "M", "M", "M", "F", "M", "M", "F", "F", "M", "F", "M",
"M", "M", "M", "M", "M", "M", "M", "F", "F", "F", "M", "M", "F",
"M", "F", "M", "F", "F", "M", "F", "M", "F", "M", "M", "M", "M",
"M", "F", "M", "M", "M", "M", "F", "F", "M", "F", "F", "M", "M",
"M", "F", "F", "F", "M", "F", "F", "F", "F", "F", "F", "M", "F",
"F", "M", "", "F", "F", "M", "F", "M", "M", "M", "F", "M", "M",
"F", "M", "M", "M", "F", "M", "F", "M", "M", "M", "F", "M", "F",
"M", "F", "F", "M", "F", "M", "M", "F", "F", "F", "M", "F", "F",
"F", "F", "M", "M", "M", "M", "F", "M", "F", "M", "M", "F", "M",
"F", "M", "M", "M", "M", "F", "F", "M", "F", "M", "M", "F", "M",
"M", "F", "F", "F", "F", "M", "F", "M", "M", "M", "M", "M", "M",
"M", "M", "F", "M", "F", "F", "M", "F", "M", "M", "F", "F", "F",
"F", "F", "M", "F", "M", "F", "M", "F", "F", "M", "F", "M", "M",
"M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "M", "M",
"M", "M", "F", "M", "M", "F", "F", "M", "F", "M", "F", "M", "M",
"M", "M", "M", "F", "M", "F", "M", "M", "F", "", "F", "M", "F",
"M", "F", "F", "F", "M", "F", "M", "M", "M", "", "M", "F", "M",
"", "M", "M", "M", "M", "M", "F", "F", "F", "M", "F", "F", "M",
"F", "M", "F", "F", "M", "F", "F", "M", "M", "M", "M", "F", "M",
"F", "F", "M", "M", "M", "M", "M", "M", "F", "F", "M", "M", "M",
"F", "F", "F", "M", "M", "F", "M", "F", "F", "F", "F", "", "M",
"M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "F", "M", "M",
"F", "M", "F", "M", "M", "F", "M", "F", "M", "F", "F", "M", "M",
"F", "M", "M", "F", "M", "M", "F", "M", "F", "M", "M", "M", "M",
"M", "F", "F", "M", "F", "M", "M", "F", "M", "F", "M", "M", "F",
"M", "F", "F", "M", "M", "M", "F", "M", "M", "F", "M", "M", "M",
"F", "M", "M", "M", "F", "M", "M", "F", "M", "F", "M", "F", "M",
"M", "F", "F", "M", "M", "F", "F", "F", "F", "F", "F", "M", "F",
"M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "F",
"F", "M", "F", "F", "M", "F", "F", "M", "F", "M", "M", "M", "M",
"M", "F", "M", "M", "M", "M", "M", "M", "", "M", "F", "M", "F",
"M", "F", "M", "M", "M", "M", "F", "M", "M", "M", "M", "M", "M",
"M", "M", "M", "M", "F", "M", "F", "F", "F", "F", "M", "F", "F",
"M", "M", "F", "F", "F", "", "M", "M", "M", "F", "F", "M", "F",
"F", "F", "M", "M", "M", "M", "F", "M", "F", "M", "M", "M", "M",
"M", "M", "M", "M", "M", "F", "F", "M", "F", "F", "M", "M", "M",
"M", "M", "F", "F", "M", "F", "F", "F", "F", "M", "M", "M", "F",
"M", "M", "F", "M", "F", "M", "M", "M", "M", "F", "M", "M", "F",
"F", "M", "M", "F", "M", "M", "F", "M", "F", "M", "F", "M", "F",
"M", "F", "M", "F", "M", "M", "F", "F", "F", "M", "M", "M", "M",
"F", "M", "M", "M", "M", "F", "M", "F", "M", "F", "M", "M", "M",
"M", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "M", "F",
"F", "F", "F", "F", "F", "M", "F", "M", "M", "M", "F", "M", "M",
"F", "M", "F", "M", "M", "M", "M", "F", "M", "M", "M", "M", "M",
"M", "M", "M", "F", "F", "M", "F", "F", "F", "M", "M", "M", "F",
"F", "F", "F", "M", "M", "M", "M", "F", "F", "F", "F", "F", "F",
"M", "F", "F", "F", "M", "M", "M", "M", "M", "F", "M", "M", "M",
"F", "F", "F", "M", "M", "F", "F", "F", "M", "F", "F", "M", "M",
"F", "F", "F", "M", "F", "F", "M", "M", "M", "M", "F", "M", "M",
"M", "F", "M", "F", "M", "F", "F", "M", "M", "F", "M", "M", "F",
"M", "M", "F", "F", "F", "M", "M", "M", "F", "F", "F", "M", "M",
"M", "F", "M", "F", "M", "M", "M", "M", "M", "M", "F", "F", "M",
"F", "F", "F", "M", "M", "M", "M", "F", "M", "F", "F", "F", "F",
"M", "M", "M", "F", "F", "M", "M", "F", "F", "M", "M", "M", "M",
"F", "M", "F", "M", "F", "M", "F", "F", "M", "F", "M", "M", "M",
"M", "F", "F", "F", "F", "F", "F", "M", "M", "M", "F", "F", "M",
"F", "F", "F", "M", "F", "", "M", "F", "M", "M", "F", "M", "M",
"M", "M", "F", "", "M", "M", "F", "F", "F", "F", "M", "M", "M",
"M", "F", "M", "F", "M", "F", "F", "F", "M", "", "F", "M", "F",
"M", "M", "F", "F", "M", "F", "F", "F", "F", "F", "M", "F", "F",
"M", "M", "M", "F", "F", "F", "F", "M", "M", "F", "M", "M", "F",
"F", "M", "M", "M", "F", "F", "M", "F", "M", "F", "F", "F", "M",
"F", "F", "M", "F", "M", "M", "M", "M", "M", "F", "M", "F", "M",
"F", "F", "F", "M", "F", "F", "F", "F", "F", "M", "M", "M", "F",
"M", "F", "F", "F", "M", "F", "M", "F", "F", "F", "M", "M", "F",
"F", "M", "F", "M", "", "M", "M", "M", "F", "M", "F", "M", "M",
"M", "F", "F", "M", "M", "M", "F", "M", "F", "F", "F", "F", "M",
"F", "M", "M", "M", "F", "F", "M", "F", "F", "", "M", "F", "F",
"F", "F", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M", "F",
"M", "F", "M", "F", "F", "F", "F", "M", "F", "M", "F", "M", "M",
"M", "M", "F", "", "F", "M", "F", "F", "F", "M", "M", "F", "F",
"M", "F", "F", "F", "F", "F", "M", "F", "F", "M", "M", "F", "F",
"F", "M", "F", "F", "M", "F", "", "M", "F", "F", "F", "F", "F",
"F", "M", "M", "M", "F", "M", "F", "M", "M", "F", "M", "M", "M",
"F", "M", "", "F", "F", "F", "M", "F", "F", "M", "F", "M", "M",
"F", "M", "M", "F", "M", "M", "F", "M", "F", "M", "M", "M", "M",
"F", "F", "F", "F", "M", "F", "F", "M", "M", "M", "F", "F", "F",
"M", "F", "F", "F", "M", "F", "F", "M", "M", "F", "F", "F", "M",
"M", "F", "M", "F", "F", "F", "F", "F", "F", "M", "F", "F", "F",
"M", "F", "F", "M", "M", "M", "F", "F", "F", "M", "M", "F", "M",
"F", "", "F", "F", "F", "M", "F", "M", "F", "F", "F", "", "F",
"F", "F", "F", "F", "F", "M", "M", "F", "M", "F", "M", "F", "F",
"F", "M", "F", "F", "M", "F", "M", "M", "M", "M", "", "M", "M",
"M", "F", "F", "F", "M", "F", "M", "F", "M", "F", "F", "F", "M",
"F", "F", "F", "M", "M", "F", "F", "F", "M", "F", "F", "M", "F",
"F", "F", "F", "M", "F", "F", "F", "M", "M", "M", "", "F", "F",
"F", "M", "F", "M", "M", "F", "F", "F", "M", "", "M", "F", "F",
"F", "F", "F", "F", "M", "M", "F", "M", "F", "M", "M", "M", "F",
"F", "", "F", "M", "M", "F", "F", "M", "F", "M", "M", "M", "F",
"M", "F", "F", "M", "M", "M", "F", "F", "M", "F", "M", "F", "",
"M", "M", "F", "M", "F", "F", "F", "", "M", "M", "F", "F", "M",
"F", "F", "F", "F", "F", "F", "F", "M", "F", "M", "M", "", "M",
"F", "F", "M", "M", "F", "M", "M", "F", "M", "M", "F", "F", "M",
"F", "F", "F", "M", "F", "M", "M", "M", "M", "F", "M", "M", "M",
"F", "F", "F", "F", "M", "M", "M", "F", "F", "F", "M", "F", "F",
"F", "F", "F", "F", "F", "F", "M", "M", "M", "M", "F", "F", "F",
"M", "M", "F", "F", "M", "F", "M", "F", "M", "F", "M", "F", "M",
"F", "M", "M", "F", "F", "M", "M", "F", "F", "M", "M", "M", "F",
"F", "F", "F", "M", "M", "F", "M", "F", "F", "M", "F", "F", "F",
"F", "M", "F", "F", "M", "M", "F", "F", "F", "F", "F", "F", "M",
"F", "F", "M", "M", "M", "F", "M", "M", "M", "M", "F", "F", "F",
"F", "M", "F", "M", "F", "M", "M", "M", "M", "F", "M", "M", "F",
"F", "F", "M", "F", "F", "F", "F", "M", "F", "M", "M", "F", "F",
"M", "M", "F", "M", "F", "M", "F", "F", "", "F", "M", "M", "M",
"M", "F", "F", "F", "M", "M", "M", "F", "M", "M", "", "F", "M",
"M", "F", "M", "F", "F", "F", "M", "F", "M", "F", "M", "F", "F",
"F", "M", "M", "F", "F", "M", "F", "M", "M", "F", "F", "F", "M",
"F", "F", "M", "F", "M", "F", "M", "M", "M", "F", "F", "F", "M",
"M", "F", "F", "F", "M", "M", "F", "M", "F", "M", "F", "F", "F",
"F", "M", "F", "M", "F", "F", "F", "M", "M", "F", "F", "M", "F",
"M", "F", "M", "M", "F", "M", "M", "M", "F", "F", "F", "F", "F",
"M", "M", "F", "F", "M", "F", "F", "F", "M", "F", "M", "M", "F",
"M", "F", "M", "M", "F", "F", "M", "F", "M", "M", "F", "F", "M",
"F", "M", "M", "F", "M", "M", "F", "F", "F", "F", "M", "M", "F",
"F", "F", "F", "M", "M", "M", "M", "F", "F", "F", "F", "M", "F",
"F", "M", "M", "F", "F", "F", "M", "M", "F", "M", "F", "F", "F",
"M", "M", "M", "F", "F", "F", "F", "M", "F", "M", "M", "F", "M",
"F", "M", "M", "F", "F", "F", "M", "F", "M", "F", "F", "", "F",
"F", "M", "F", "F", "F", "M", "M", "F", "F", "F", "F", "M", "F",
"F", "F", "F", "M", "M", "M", "M", "F", "F", "M", "F", "F", "M",
"M", "", "M", "F", "F", "M", "F", "M", "M", "M", "M", "F", "M",
"F", "M", "M", "F", "F", "M", "F", "M", "M", "M", "F", "M", "M",
"M", "M", "F", "F", "F", "M", "F", "F", "M", "M", "M", "F", "F",
"F", "M", "F", "F", "M", "F", "F", "M", "M", "F", "F", "F", "F",
"M", "F", "F", "M", "M", "M", "F", "F", "M", "F", "F", "F", "",
"M", "F", "F", "M", "M", "F", "F", "F", "F", "M", "F", "F", "F",
"M", "M", "M", "F", "M", "M", "F", "F", "M", "M", "F", "F", "F",
"M", "M", "F", "M", "F", "M", "M", "M", "M", "M", "F", "M", "M",
"M", "", "F", "F", "F", "F", "F", "F", "M", "M", "M", "M", "F",
"F", "F", "M", "M", "F", "M", "M", "M", "F", "F", "M", "F", "M",
"F", "F", "", "M", "", "M", "F", "F", "F", "F", "M", "M", "F",
"F", "F", "M", "M", "F", "M", "M", "M", "F", "F", "M", "M", "F",
"M", "F", "M", "M", "F", "F", "F", "F", "M", "M", "F", "F", "M",
"M", "M", "M", "F", "F", "M", "M", "M", "M", "M", "M", "F", "F",
"M", "M", "F", "F", "F", "M", "F", "M", "M", "F", "F", "F", "M",
"M", "F", "F", "M", "M", "M", "F", "F", "F", "M", "F", "M", "M",
"M", "M", "F", "M", "F", "F", "F", "F", "F", "M", "F", "F", "F",
"F", "M", "M", "M", "F", "F", "M", "F", "M", "F", "M", "F", "M",
"M", "", "F", "M", "F", "M", "F", "F", "F", "F", "F", "M", "M",
"M", "M", "M", "F", "M", "M", "M", "M", "F", "M", "F", "M", "M",
"M", "M", "M", "F", "M", "M", "F", "M", "M", "M", "F", "F", "F",
"F", "M", "F", "M", "M", "F", "F", "F", "F", "F", "F", "F", "F",
"F", "M", "M", "M", "F", "M", "M", "F", "M", "M", "F", "M", "F",
"F", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M", "F", "F",
"F", "F", "F", "F", "M", "F", "M", "F", "M", "M", "F", "F", "M",
"M", "F", "F", "F", "F", "F", "F", "M", "F", "F", "", "M", "F",
"F", "M", "M", "M", "F", "F", "F", "M", "F", "F", "M", "M", "M",
"F", "F", "F", "F", "M", "F", "M", "M", "F", "F", "M", "F", "F",
"F", "M", "M", "F", "F", "M", "", "F", "M", "M", "F", "F", "F",
"M", "M", "M", "M", "F", "M", "F", "M", "F", "M", "F", "M", "F",
"M", "M", "M", "F", "M", "F", "M", "M", "M", "F", "F", "F", "M",
"F", "F", "M", "M", "F", "F", "F", "M", "F", "M", "F", "", "",
"M", "F", "M", "M", "F", "F", "M", "M", "M", "F", "", "M", "F",
"F", "M", "M", "M", "F", "M", "M", "F", "M", "M", "F", "M", "F",
"M", "", "M", "F", "F", "M", "M", "M", "M", "M", "M", "F", "F",
"M", "M", "M", "M", "F", "F", "F", "M", "M", "F", "F", "F", "M",
"M", "F", "M", "M", "F", "F", "M", "F", "M", "F", "M", "F", "F",
"M", "F", "M", "F", "M", "F", "M", "F", "F", "M", "M", "F", "F",
"", "F", "F", "F", "M", "M", "M", "F", "F", "M", "F", "M", "F",
"M", "F", "M", "M", "F", "M", "F", "M", "F", "M", "F", "F", "M",
"F", "F", "M", "M", "F", "M", "F", "M", "F", "F", "F", "M", "F",
"M", "", "M", "M", "M", "M", "F", "M", "M", "F", "F", "F", "F",
"", "", "F", "F", "F", "M", "F", "F", "", "M", "M", "M", "F",
"M", "F", "F", "F", "F", "M", "M", "M", "F", "M", "F", "M", "F",
"M", "F", "F", "M", "F", "F", "F", "F", "F", "M", "M", "F", "M",
"M", "M", "M", "M", "M", "F", "M", "F", "F", "F", "M", "M", "M",
"M", "", "F", "M", "M", "M", "M", "F", "M", "M", "M", "M", "F",
"F", "F", "F", "F", "F", "M", "F", "F", "M", "M", "M", "M", "F",
"M", "F", "M", "F", "M", "M", "F", "F", "F", "M", "M", "M", "F",
"M", "F", "M", "M", "F", "M", "", "F", "M", "", "F", "F", "F",
"M", "M", "M", "F", "M", "M", "F", "F", "M", "F", "M", "M", "M",
"M", "M", "F", "M", "M", "M", "", "F", "M", "", "F", "M", "M",
"M", "F", "F", "F", "F", "M", "", "M", "", "F", "M", "F", "F",
"M", "F", "M", "M", "F", "M", "F", "M", "M", "M", "F", "", "F",
"M", "F", "F", "F", "F", "M", "M", "F", "M", "M", "M", "M", "F",
"F", "M", "F", "M", "M", "F", "M", "M", "M", "M", "F", "F", "F",
"F", "F", "F", "F", "F", "M", "M", "F", "M", "F", "M", "F", "M",
"F", "F", "M", "M", "M", "F", "F", "F", "M", "F", "F", "M", "F",
"M", "M", "M", "M", "M", "F", "F", "M", "F", "F", "F", "M", "F",
"F", "M", "F", "F", "F", "F", "M", "F", "F", "M", "F", "F", "F",
"M", "F", "M", "M", "M", "F", "M", "M", "M", "F", "M", "M", "F",
"F", "M", "M", "F", "M", "F", "M", "F", "F", "F", "F", "M", "M",
"F", "M", "F", "M", "M", "M", "F", "M", "M", "F", "M", "F", "F",
"M", "M", "M", "M", "F", "M", "M", "F", "M", "M", "M", "M", "M",
"F", "F", "M", "F", "F", "M", "F", "F", "M", "F", "F", "F", "F",
"M", "M", "M", "M", "M", "F", "F", "M", "M", "F", "M", "F", "F",
"F", "M", "F", "F", "M", "F", "F", "M", "M", "F", "M", "F", "M",
"F", "F", "F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "M",
"M", "F", "M", "F", "M", "M", "M", "M", "F", "F", "M", "M", "F",
"M", "M", "M", "M", "M", "M", "M", "F", "M", "F", "M", "F", "M",
"M", "F", "M", "M", "M", "M", "F", "M", "F", "M", "F", "F", "M",
"F", "M", "F", "M", "M", "M", "M", "F", "M", "F", "M", "F", "M",
"F", "F", "M", "M", "F", "M", "F", "M", "F", "M", "F", "F", "",
"F", "M", "F", "M", "M", "F", "M", "F", "M", "M", "F", "M", "F",
"M", "F", "M", "", "M", "F", "", "F", "M", "M", "M", "M", "F",
"F", "M", "", "F", "F", "F", "F", "F", "F", "M", "M", "M", "M",
"M", "M", "M", "M", "F", "F", "F", "M", "M", "M", "M", "F", "F",
"F", "M", "F", "M", "F", "F", "F", "F", "", "F", "M", "M", "F",
"M", "M", "F", "F", "M", "M", "F", "F", "M", "F", "", "M", "M",
"M", "M", "M", "F", "M", "M", "M", "M", "M", "M", "M", "F", "F",
"F", "F", "M", "M", "F", "F", "M", "F", "F", "M", "M", "F", "F",
"M", "M", "M", "M", "M", "M", "F", "M", "F", "", "F", "F", "M",
"M", "M", "M", "M", "M", "F", "F", "F", "F", "F", "M", "F", "M",
"M", "F", "M", "M", "M", "F", "M", "F", "F", "M", "F", "M", "F",
"M", "M", "F", "F", "M", "F", "F", "F", "M", "F", "F", "F", "M",
"F", "F", "F", "F", "M", "M", "M", "M", "F", "F", "F", "M", "F",
"M", "M", "F", "F", "F", "M", "M", "F", "F", "F", "M", "M", "F",
"F", "F", "M", "M", "M", "F", "M", "M", "F", "F", "M", "F", "M",
"M", "F", "M", "F", "F", "", "M", "F", "M", "M", "M", "F", "M",
"M", "F", "M", "M", "", "M", "M", "F", "M", "F", "F", "M", "F",
"F", "M", "M", "M", "F", "M", "F", "M", "M", "M", "F", "M", "F",
"M", "F", "F", "F", "M", "F", "M", "F", "F", "F", "F", "F", "F",
"F", "F", "F", "F", "M", "M", "F", "M", "F", "M", "F", "F", "M",
"M", "M", "M", "M", "M", "F", "F", "M", "F", "M", "M", "M", "F",
"M", "M", "M", "M", "F", "F", "M", "M", "F", "F", "F", "F", "F",
"", "F", "M", "", "F", "F", "M", "M", "F", "F", "M", "M", "F",
"M", "M", "M", "F", "M", "M", "M", "M", "F", "F", "F", "F", "M",
"M", "M", "M", "M", "F", "F", "F", "M", "M", "M", "F", "M", "M",
"M", "M", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M", "M",
"M", "M", "M", "F", "M", "F", "F", "F", "M", "M", "M", "M", "F",
"F", "F", "F", "F", "M", "F", "F", "F", "M", "M", "M", "M", "M",
"", "M", "M", "M", "M", "", "M", "M", "M", "M", "M", "F", "M",
"F", "F", "F", "F", "M", "F", "M", "F", "M", "M", "F", "M", "F",
"F", "M", "M", "M", "F", "F", "F", "F", "M", "F", "M", "M", "F",
"F", "M", "F", "M", "M", "F", "F", "M", "F", "F", "M", "M", "F",
"M", "M", "F", "F", "M", "F", "F", "M", "M", "F", "M", "M", "F",
"F", "M", "F", "F", "F", "M", "M", "F", "M", "M", "M", "M", "F",
"F", "M", "M", "F", "M", "F", "M", "F", "F", "F", "F", "F", "F",
"M", "M", "F", "M", "M", "F", "F", "M", "M", "M", "F", "F", "F",
"F", "M", "F", "M", "F", "F", "M", "M", "M", "M", "M", "F", "F",
"F", "M", "F", "M", "M", "F", "F", "M", "M", "F", "M", "M", "F",
"M", "F", "F", "M", "M", "M", "M", "F", "M", "F", "F", "M", "F",
"M", "F", "", "M", "F", "M", "F", "M", "F", "F", "M", "M", "F",
"M", "M", "F", "M", "M", "F", "M", "F", "M", "F", "F", "F", "M",
"M", "M", "F", "M", "M", "F", "M", "M", "M", "M", "", "F", "M",
"M", "", "F", "M", "F", "F", "M", "M", "M", "F", "", "M", "F",
"F", "F", "F", "F", "M", "M", "M", "F", "M", "M", "M", "F", "F",
"F", "F", "M", "F", "F", "F", "F", "", "F", "F", "F", "M", "M",
"F", "M", "M", "F", "M", "M", "F", "M", "M", "F", "M", "M", "M",
"F", "F", "F", "M", "M", "M", "F", "F", "M", "", "F", "M", "F",
"F", "M", "M", "F", "", "M", "M", "", "M", "M", "M", "", "M",
"F", "F", "M", "F", "M", "F", "F", "M", "F", "", "F", "F", "M",
"F", "F", "F", "M", "F", "F", "F", "F", "F", "F", "F", "F", "M",
"F", "M", "M", "M", "F", "F", "F", "F", "F", "M", "M", "F", "M",
"M", "M", "M", "F", "F", "F", "M", "F", "F", "M", "F", "F", "M",
"M", "F", "M", "M", "M", "M", "F", "M", "M", "F", "F", "F", "",
"M", "M", "M", "F", "M", "F", "F", "F", "M", "", "M", "M", "F",
"M", "M", "M", "F", "M", "F", "F", "M", "M", "F", "M", "F", "M",
"F", "F", "M", "F", "F", "F", "M", "F", "F", "F", "F", "F", "F",
"F", "F", "", "M", "M", "M", "M", "M", "M", "F", "F", "M", "F",
"M", "F", "F", "M", "F", "F", "F", "M", "F", "M", "M", "M", "F",
"M", "M", "M", "F", "F", "M", "F", "F", "M", "M", "F", "M", "F",
"F", "F", "F", "M", "M", "M", "M", "F", "M", "F", "M", "M", "F",
"F", "F", "F", "F", "M", "F", "M", "M", "F", "", "", "M", "F",
"F", "M", "F", "M", "F", "M", "F", "M", "M", "F", "M", "M", "F",
"M", "M", "F", "F", "", "F", "F", "M", "F", "F", "F", "F", "M",
"M", "M", "F", "F", "M", "F", "F", "F", "F", "M", "M", "F", "F",
"F", "F", "M", "F", "F", "F", "M", "F", "M", "M", "M", "F", "M",
"M", "F", "M", "M", "F", "F", "M", "F", "F", "M", "M", "M", "M",
"F", "M", "F", "M", "M", "F", "F", "F", "F", "F", "M", "M", "F",
"M", "M", "M", "F", "", "F", "M", "M", "M", "M", "M", "M", "M",
"M", "M", "", "F", "M", "F", "M", "F", "", "M", "F", "M", "F",
"F", "M", "M", "M", "M", "M", "M", "F", "F", "F", "M", "M", "M",
"F", "M", "F", "F", "F", "F", "F", "F", "M", "M", "M", "F", "F",
"F", "M", "F", "M", "M", "M", "M", "F", "F", "F", "M", "F", "M",
"M", "M", "M", "M", "F", "F", "F", "M", "M", "F", "F", "M", "M",
"M", "M", "F", "M", "F", "M", "M", "M", "M", "M", "M", "F", "F",
"F", "M", "F", "M", "F", "M", "M", "F", "F", "M", "F", "F", "F",
"F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "M", "M", "M",
"M", "M", "F", "M", "M", "M", "F", "F", "M", "F", "F", "M", "F",
"M", "M", "M", "M", "F", "M", "F", "M", "M", "M", "F", "", "F",
"M", "", "F", "M", "M", "F", "M", "F", "M", "F", "F", "F", "F",
"M", "F", "F", "F", "M", "F", "F", "M", "M", "F", "M", "F", "F",
"F", "M", "M", "F", "M", "", "F", "F", "F", "M", "M", "M", "M",
"M", "F", "M", "M", "F", "M", "F", "F", "F", "M", "F", "M", "M",
"F", "F", "M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "M",
"F", "F", "M", "F", "M", "M", "F", "", "", "F", "F", "M", "M",
"F", "F", "", "M", "M", "F", "F", "M", "F", "F", "F", "M", "F",
"M", "F", "F", "M", "F", "M", "M", "M", "", "F", "F", "M", "F",
"M", "F", "M", "F", "M", "F", "M", "M", "M", "M", "M", "F", "",
"M", "M", "M", "M", "M", "M", "M", "M", "F", "M", "F", "F", "F",
"M", "", "M", "F", "M", "M", "M", "M", "M", "F", "F", "M", "M",
"M", "F", "F", "F", "F", "M", "M", "M", "F", "F", "F", "F", "M",
"F", "M", "F", "M", "F", "M", "F", "M", "M", "M", "F", "M", "M",
"M", "F", "F", "F", "F", "M", "F", "F", "M", "M", "F", "M", "F",
"M", "F", "M", "M", "M", "F", "M", "M", "F", "", "M", "F", "M",
"F", "F", "M", "F", "M", "M", "F", "F", "M", "M", "M", "F", "M",
"M", "M", "F", "F", "M", "F", "M", "M", "M", "M", "F", "M", "M",
"F", "F", "M", "F", "F", "M", "F", "M", "M", "M", "F", "F", "F",
"M", "F", "M", "M", "F", "M", "F", "M", "F", "F", "M", "F", "",
"M", "F", "M", "F", "M", "M", "F", "M", "M", "F", "F", "M", "M",
"F", "F", "M", "M", "M", "M", "F", "M", "M", "F", "M", "M", "M",
"M", "F", "M", "M", "F", "M", "M", "M", "F", "F", "F", "M", "M",
"F", "M", "F", "M", "F", "F", "F", "M", "F", "M", "F", "F", "F",
"M", "", "", "F", "F", "M", "M", "F", "F", "F", "", "M", "M",
"M", "M", "M", "F", "F", "M", "F", "F", "M", "F", "M", "F", "F",
"M", "M", "F", "F", "", "M", "F", "F", "F", "M", "M", "M", "M",
"F", "F", "M", "M", "M", "", "M", "F", "F", "F", "F", "M", "M",
"F", "", "M", "M", "M", "F", "M", "M", "M", "F", "F", "M", "M",
"M", "M", "M", "", "M", "F", "M", "", "", "M", "M", "M", "M",
"F", "M", "M", "F", "M", "M", "M", "M", "F", "F", "F", "M", "M",
"F", "F", "M", "F", "F", "M", "M", "", "M", "M", "M", "F", "F",
"M", "M", "F", "F", "F", "F", "M", "F", "F", "M", "M", "M", "M",
"M", "F", "", "M", "M", "F", "F", "F", "F", "M", "M", "F", "F",
"M", "F", "M", "M", "F", "M", "M", "F", "F", "M", "F", "M", "M",
"", "M", "M", "M", "M", "M", "M", "F", "F", "F", "M", "M", "F",
"M", "F", "M", "M", "M", "M", "M", "F", "F", "M", "M", "F", "M",
"M", "F", "", "", "M", "F", "M", "F", "F", "F", "M", "", "M",
"F", "M", "M", "M", "F", "M", "M", "F", "F", "M", "F", "M", "",
"F", "F", "F", "M", "M", "M", "F", "F", "M", "M", "F", "M", "M",
"F", "F", "M", "F", "M", "F", "F", "M", "F", "M", "F", "M", "M",
"F", "F", "F", "F", "F", "F", "M", "M", "F", "M", "M", "F", "F",
"F", "F", "M", "M", "M", "F", "M", "M", "F", "M", "F", "M", "F",
"F", "F", "F", "M", "M", "M", "F", "F", "M", "", "F", "F", "F",
"M", "M", "M", "F", "M", "F", "M", "F", "F", "M", "M", "F", "M",
"M", "M", "F", "F", "M", "F", "F", "M", "F", "M", "F", "M", "F",
"M", "", "F", "M", "M", "M", "F", "M", "M", "F", "F", "M", "M",
"F", "F", "M", "M", "M", "M", "M", "", "F", "F", "M", "M", "F",
"F", "F", "M", "F", "F", "M", "M", "M", "F", "F", "M", "F", "M",
"F", "F", "F", "M", "F", "F", "M", "M", "M", "F", "F", "F", "F",
"F", "F", "F", "M", "M", "F", "F", "F", "F", "F", "F", "F", "M",
"M", "M", "F", "F", "M", "F", "F", "M", "F", "F", "M", "F", "F",
"F", "M", "F", "F", "M", "M", "F", "F", "M", "M", "M", "M", "F",
"M", "M", "F", "F", "F", "F", "", "M", "F", "F", "M", "F", "F",
"M", "F", "F", "M", "F", "M", "M", "M", "", "F", "F", "F", "M",
"", "M", "M", "M", "M", "M", "", "F", "M", "M", "M", "M", "F",
"", "F", "M", "F", "M", "M", "M", "F", "F", "F", "", "F", "F",
"F", "M", "M", "", "F", "M", "M", "F", "F", "M", "F", "F", "M",
"M", "M", "M", "F", "", "M", "F", "M", "F", "M", "M", "F", "F",
"M", "M", "F", "F", "F", "M", "M", "F", "M", "F", "F", "F", "F",
"M", "M", "M", "F", "M", "M", "F", "F", "F", "M", "M", "M", "M",
"F", "F", "M", "M", "F", "F", "F", "F", "F", "F", "M", "F", "F",
"", "M", "M", "F", "M", "M", "M", "F", "F", "F", "F", "M", "M",
"F", "F", "M", "M", "", "M", "M", "M", "F", "F", "F", "M", "F",
"M", "F", "M", "M", "M", "F", "F", "M", "M", "F", "F", "M", "F",
"M", "M", "F", "F", "M", "M", "F", "", "", "M", "F", "F", "M",
"F", "M", "M", "M", "F", "M", "M", "F", "M", "F", "F", "F", "M",
"", "F", "M", "F", "", "F", "F", "F", "F", "M", "M", "F", "",
"M", "M", "F", "F", "M", "M", "M", "M", "F", "M", "M", "M", "F",
"F", "F", "F", "F", "F", "M", "M", "F", "F", "F", "F", "F", "F",
"F", "M", "", "M", "F", "", "M", "M", "M", "M", "M", "M", "M",
"M", "M", "M", "F", "F", "", "F", "M", "F", "M", "M", "M", "F",
"M", "F", "F", "", "M", "", "M", "F", "F", "M", "F", "F", "F",
"", "M", "M", "F", "F", "M", "M", "M", "F", "M", "F", "F", "M",
"F", "M", "M", "M", "M", "M", "", "F", "F", "F", "M", "M", "F",
"F", "M", "", "F", "M", "M", "F", "", "F", "M", "F", "F", "F",
"M", "M", "F", "M", "M", "F", "M", "F", "M", "M", "F", "M", "M",
"F", "F", "M", "F", "M", "M", "M", "M", "F", "F", "M", "M", "F",
"M", "F", "F", "F", "F", "F", "F", "M", "F", "F", "F", "F", "M",
"M", "M", "M", "F", "M", "M", "M", "M", "F", "F", "F", "M", "M",
"F", "F", "M", "F", "F", "F", "M", "M", "M", "M", "F", "F", "M",
"F", "M", "F", "M", "F", "F", "M", "M", "M", "M", "M", "F", "F",
"F", "M", "F", "M", "M", "F", "F", "M", "F", "F", "F", "M", "F",
"M", "F", "M", "F", "F", "F", "M", "F", "F", "M", "M", "M", "M",
"F", "F", "M", "M", "M", "F", "F", "", "M", "M", "F", "F", "M",
"M", "M", "M", "M", "F", "M", "F", "M", "M", "M", "F", "F", "F",
"F", "M", "F", "F", "F", "F", "F", "F", "M", "M", "M", "M", "M",
"F", "M", "M", "M", "F", "F", "M", "M", "F", "M", "M", "M", "F",
"F", "F", "F", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M",
"M", "M", "M", "F", "M", "M", "F", "M", "F", "F", "F", "M", "F",
"M", "M", "M", "M", "F", "", "F", "M", "M", "M", "F", "M", "F",
"M", "F", "M", "F", "F", "M", "M", "F", "", "F", "M", "F", "F",
"M", "M", "F", "M", "M", "M", "M", "F", "M", "M", "F", "M", "F",
"F", "M", "M", "M", "M", "M", "F", "M", "M", "M", "M", "M", "M",
"F", "F", "M", "M", "F", "F", "F", "M", "M", "M", "F", "F", "M",
"M", "M", "M", "M", "F", "M", "", "M", "M", "F", "M", "F", "F",
"M", "F", "M", "M", "M", "F", "F", "F", "M", "M", "M", "F", "M",
"F", "F", "F", "M", "M", "F", "M", "F", "F", "F", "F", "F", "M",
"M", "F", "F", "M", "M", "F", "F", "F", "F", "M", "M", "M", "M",
"F", "M", "M", "M", "M", "F", "M", "M", "M", "M", "M", "F", "F",
"M", "F", "M", "M", "M", "M", "M", "F", "M", "M", "M", "F", "F",
"M", "F", "F", "F", "M", "M", "F", "M", "M", "M", "F", "M", "",
"F", "F", "M", "M", "M", "F", "F", "M", "", "F", "", "F", "F",
"M", "M", "", "", "M", "M", "M", "F", "M", "F", "M", "F", "F",
"F", "M", "F", "F", "M", "M", "M", "M", "F", "M", "M", "F", "M",
"F", "M", "F", "F", "M", "F", "F", "F", "M", "M", "M", "M", "F",
"F", "M", "M", "M", "M", "M", "M", "M", "F", "F", "M", "M", "F",
"F", "F", "F", "F", "M", "M", "F", "F", "F", "M", "M", "M", "F",
"M", "F", "F", "F", "M", "M", "F", "M", "M", "M", "M", "M", "M",
"F", "F", "M", "M", "M", "M", "M", "F", "F", "F", "F", "", "M",
"F", "F", "M", "F", "M", "M", "M", "F", "M", "M", "M", "M", "M",
"M", "M", "M", "F", "M", "M", "M", "F", "M", "F", "M", "M", "M",
"F", "M", "M", "M", "M", "F", "F", "M", "F", "M", "M", "F", "F",
"F", "M", "F", "M", "M", "M", "F", "M", "M", "M", "M", "F", "F",
"M", "M", "F", "M", "F", "M", "M", "M", "F", "", "M", "M", "F",
"F", "F", "F", "F", "M", "M", "F", "M", "F", "F", "F", "F", "M",
"F", "M", "M", "M", "F", "M", "M", "M", "F", "F", "F", "F", "M",
"F", "F", "F", "M", "M", "M", "M", "F", "M", "M", "", "F", "M",
"", "M", "F", "F", "M", "F", "M", "M", "F", "F", "F", "F", "M",
"M", "F", "M", "M", "F", "M", "F", "F", "M", "M", "F", "F", "F",
"", "M", "M", "M", "F", "M", "F", "M", "M", "M", "F", "F", "M",
"M", "M", "F", "F", "M", "M", "F", "M", "F", "M", "F", "M", "M",
"F", "F", "M", "F", "F", "M", "F", "M", "M", "M", "M", "M", "F",
"F", "M", "F", "F", "M", "F", "F", "M", "M", "F", "M", "F", "",
"M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "M",
"F", "M", "M", "M", "M", "F", "F", "M", "F", "M", "M", "M", "M",
"M", "F", "", "M", "F", "M", "", "M", "M", "M", "M", "M", "M",
"M", "F", "F", "M", "F", "M", "M", "F", "M", "F", "F", "F", "F",
"F", "F", "F", "M", "F", "M", "F", "M", "F", "F", "M", "M", "F",
"M", "F", "M", "M", "M", "F", "M", "", "F", "F", "F", "M", "F",
"M", "M", "M", "F", "M", "M", "F", "M", "M", "", "M", "M", "M",
"F", "M", "F", "M", "M", "M", "M", "F", "", "F", "M", "M", "F",
"F", "F", "F", "M", "M", "M", "M", "M", "", "F", "M", "M", "M",
"M", "F", "M", "M", "F", "F", "M", "F", "F", "M", "", "M", "M",
"F", "F", "F", "M", "F", "F", "M", "M", "F", "F", "M", "M", "M",
"F", "F", "M", "F", "F", "M", "M", "M", "M", "M", "M", "F", "F",
"F", "F", "M", "F", "M", "F", "M", "M", "M", "M", "M", "M", "F",
"F", "F", "F", "M", "M", "F", "F", "F", "F", "F", "M", "M", "M",
"M", "M", "M", "M", "F", "M", "M", "M", "M", "M", "F", "F", "F",
"", "M", "M", "F", "M", "M", "F", "M", "F", "M", "M", "M", "M",
"M", "F", "F", "F", "F", "F", "F", "M", "F", "F", "M", "M", "M",
"M", "F", "M", "M", "F", "F", "F", "M", "M", "M", "M", "F", "M",
"M", "M", "", "M", "F", "M", "M", "F", "M", "", "F", "F", "F",
"F", "F", "F", "", "", "F", "F", "F", "F", "", "F", "M", "",
"M", "", "F", "M", "F", "F", "F", "M", "F", "", "M", "M", "F",
"F", "F", "M", "M", "M", "M", "", "M", "M", "M", "", "M", "M",
"F", "F", "M", "F", "M", "M", "F", "F", "M", "M", "", "M", "M",
"M", "F", "", "", "M", "", "F", "F", "M", "", "M", "M", "M",
"M", "M", "", "F", "F", "F", "M", "F", "M", "M", "M", "M", "F",
"F", "M", "F", "F", "M", "M", "M", "M", "F", "M", "M", "M", "F",
"F", "M", "F", "F", "M", "M", "M", "M", "M", "M", "M", "F", "F",
"", "M", "F", "F", "F", "M", "F", "M", "F", "M", "M", "M", "M",
"", "F", "F", "M", "", "M", "F", "M", "F", "M", "F", "M", "M",
"F", "M", "M", "F", "F", "", "M", "F", "F", "M", "M", "M", "F",
"M", "F", "M", "F", "F", "F", "", "F", "F", "M", "F", "", "M",
"F", "M", "F", "M", "M", "M", "M", "M", "F", "M", "F", "M", "F",
"M", "F", "M", "F", "M", "M", "M", "F", "F", "F", "M", "F", "",
"F", "F", "F", "M", "F", "M", "M", "F", "F", "M", "M", "M", "F",
"M", "F", "M", "F", "M", "F", "", "M", "M", "M", "M", "F", "M",
"F", "F", "F", "M", "F", "M", "F", "F", "M", "M", "", "F", "M",
"F", "M", "F", "M", "F", "M", "M", "F", "M", "F", "M", "M", "M",
"F", "F", "F", "F", "M", "M", "M", "F", "M", "F", "M", "F", "F",
"F", "M", "F", "M", "M", "M", "M", "F", "F", "F", "M", "F", "F",
"F", "M", "M", "M", "M", "M", "M", "F", "M", "F", "M", "F", "F",
"F", "F", "F", "F", "M", "F", "F", "F", "F", "F", "M", "", "M",
"F", "M", "M", "M", "F", "", "F", "M", "M", "F", "M", "F", "F",
"M", "F", "M", "M", "F", "M", "F", "F", "M", "", "M", "F", "F",
"F", "M", "M", "F", "M", "M", "M", "F", "", "F", "F", "", "F",
"F", "M", "M", "M", "M", "M", "F", "M", "F", "M", "M", "F", "M",
"M", "F", "M", "F", "F", "M", "M", "F", "F", "M", "M", "M", "M",
"F", "M", "F", "M", "F", "M", "M", "F", "M", "M", "M", "M", "",
"M", "F", "F", "F", "M", "M", "F", "F", "F", "M", "F", "", "F",
"F", "", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "F",
"F", "F", "M", "F", "M", "F", "F", "F", "F", "M", "F", "F", "M",
"F", "F", "F", "M", "M", "M", "M", "M", "F", "M", "F", "F", "M",
"M", "F", "F", "M", "M", "M", "F", "F", "F", "M", "M", "M", "F",
"M", "M", "F", "M", "F", "", "F", "F", "F", "F", "F", "M", "F",
"M", "M", "", "F", "M", "F", "F", "F", "F", "F", "F", "M", "M",
"F", "M", "M", "F", "M", "M", "M", "M", "M", "", "M", "F", "F",
"M", "M", "F", "M", "M", "M", "F", "M", "F", "M", "M", "M", "M",
"F", "M", "F", "F", "F", "M", "M", "F", "F", "F", "M", "M", "M",
"F", "M", "M", "F", "F", "M", "M", "F", "F", "M", "M", "F", "",
"F", "F", "", "F", "F", "", "M", "F", "M", "M", "F", "F", "M",
"F", "M", "M", "M", "", "F", "", "M", "M", "M", "M", "M", "M",
"F", "", "F", "M", "M", "M", "M", "F", "F", "F", "F", "", "M",
"F", "", "F", "F", "F", "F", "M", "M", "M", "M", "M", "M", "F",
"M", "F", "M", "M", "F", "F", "M", "F", "M", "M", "F", "M", "F",
"M", "F", "M", "", "M", "M", "M", "F", "M", "M", "M", "F", "M",
"M", "M", "F", "F", "F", "F", "F", "M", "M", "M", "F", "F", "F",
"M", "M", "M", "M", "M", "M", "F", "F", "F", "M", "M", "M", "M",
"", "M", "", "M", "F", "", "", "M", "F", "F", "M", "M", "M",
"M", "M", "F", "M", "M", "M", "M", "M", "F", "M", "M", "M", "F",
"M", "F", "M", "M", "M", "M", "M", "F", "F", "F", "F", "M", "F",
"M", "M", "F", "M", "M", "M", "F", "M", "M", "F", "F", "F", "M",
"F", "M", "M", "M", "M", "F", "F", "F", "M", "M", "F", "M", "M",
"M", "M", "M", "F", "F", "F", "F", "F", "M", "M", "M", "M", "F",
"M", "F", "F", "M", "F", "F", "M", "F", "M", "M", "M", "M", "F",
"F", "F", "M", "M", "F", "F", "M", "M", "F", "M", "M", "M", "F",
"M", "M", "M", "M", "F", "F", "F", "M", "M", "F", "M", "M", "F",
"F", "M", "F", "F", "F", "", "F", "M", "F", "M", "F", "M", "F",
"", "F", "F", "F", "M", "M", "M", "M", "M", "M", "F", "F", "M",
"F", "M", "M", "M", "M", "M", "M", "F", "M", "M", "M", "F", "M",
"M", "F", "M", "F", "M", "M", "M", "M", "M", "M", "M", "M", "F",
"M", "M", "M", "M", "M", "F", "M", "", "M", "F", "F", "M", "M",
"F", "M", "M", "F", "F", "M", "F", "M", "F", "F", "M", "F", "M",
"M", "F", "F", "", "M", "F", "M", "M", "F", "M", "", "F", "",
"F", "M", "M", "F", "M", "M", "M", "M", "M", "M", "F", "M", "F",
"F", "F", "F", "M", "M", "F", "", "F", "M", "F", "M", "M", "M",
"F", "F", "M", "M", "M", "M", "F", "F", "F", "F", "M", "M", "M",
"M", "F", "F", "F", "M", "F", "F", "M", "M", "M", "M", "M", "F",
"M", "F", "F", "F", "F", "M", "F", "M", "F", "F", "F", "M", "F",
"", "F", "M", "M", "M", "F", "F", "M", "F", "F", "M", "M", "F",
"M", "F", "F", "M", "M", "F", "F", "M", "M", "F", "M", "F", "F",
"M", "F", "F", "F", "M", "F", "F", "M", "", "M", "F", "M", "F",
"M", "M", "M", "M", "F", "F", "M", "M", "M", "F", "F", "M", "M",
"M", "F", "M", "F", "M", "M", "M", "F", "F", "F", "M", "M", "M",
"F", "M", "M", "M", "F", "F", "F", "M", "M", "M", "F", "F", "M",
"M", "F", "M", "M", "M", "M", "F", "F", "F", "M", "F", "F", "M",
"F", "F", "M", "F", "M", "M", "M", "M", "M", "M", "M", "", "M",
"M", "F", "M", "M", "M", "M", "F", "M", "M", "F", "M", "M", "M",
"F", "M", "F", "F", "F", "F", "F", "M", "M", "F", "F", "M", "F",
"M", "F", "F", "M", "M", "M", "F", "M", "M", "F", "F", "M", "M",
"F", "M", "M", "F", "M", "M", "M", "M", "M", "M", "M", "M", "F",
"F", "F", "", "F", "F", "M", "F", "M", "M", "M", "M", "M", "M",
"", "F", "M", "F", "M", "M", "M", "M", "F", "F", "M", "F", "F",
"M", "F", "M", "F", "M", "", "F", "F", "M", "F", "F", "M", "F",
"M", "F", "", "", "M", "M", "M", "M", "M", "M", "M", "M", "M",
"F", "M", "F", "M", "F", "F", "M", "F", "", "M", "M", "M", "M",
"F", "M", "F", "F", "M", "M", "M", "F", "M", "F", "M", "M", "M",
"F", "M", "M", "F", "M", "M", "M", "M", "F", "M", "F", "F", "M",
"M", "M", "M", "F", "F", "F", "F", "M", "F", "F", "F", "M", "M",
"M", "F", "M", "M", "M", "F", "F", "F", "F", "F", "M", "F", "F",
"M", "M", "M", "M", "M", "", "F", "", "M", "M", "M", "F", "",
"M", "M", "M", "M", "F", "F", "M", "M", "M", "F", "M", "M", "M",
"M", "M", "M", "M", "F", "M", "M", "M", "F", "F", "M", "M", "M",
"M", "F", "M", "M", "M", "M", "F", "F", "F", "M", "M", "M", "F",
"F", "M", "", "M", "F", "F", "F", "M", "F", "F", "M", "F", "M",
"M", "F", "M", "M", "F", "F", "F", "F", "F", "F", "F", "", "M",
"M", "M", "F", "M", "F", "F", "M", "F", "F", "M", "M", "M", "F",
"M", "M", "M", "F", "F", "F", "M", "M", "M", "M", "F", "M", "F",
"M", "M", "F", "M", "", "F", "M", "F", "F", "M", "F", "F", "F",
"F", "M", "F", "F", "M", "F", "F", "F", "F", "M", "M", "F", "",
"M", "M", "M", "F", "F", "M", "F", "F", "M", "M", "M", "F", "F",
"M", "M", "F", "M", "F", "M", "F", "F", "M", "M", "F", "M", "M",
"", "F", "F", "F", "M", "M", "M", "M", "M", "F", "", "M", "F",
"F", "F", "F", "M", "M", "F", "M", "F", "M", "M", "F", "M", "M",
"M", "M", "M", "F", "M", "M", "F", "F", "F", "M", "M", "M", "M",
"F", "F", "M", "M", "M", "M", "M", "F", "M", "M", "F", "M", "F",
"M", "M", "M", "F", "M", "M", "F", "", "M", "F", "F", "M", "F",
"F", "M", "M", "F", "M", "M", "F", "M", "M", "M", "M", "F", "F",
"M", "M", "F", "F", "F", "F", "M", "M", "F", "F", "M", "F", "",
"M", "M", "M", "F", "F", "", "M", "M", "M", "F", "F", "", "M",
"M", "M", "F", "F", "", "M", "F", "F", "M", "M", "M", "M", "M",
"M", "F", "F", "F", "F", "M", "F", "F", "M", "F", "M", "M", "M",
"F", "M", "M", "M", "M", "F", "M", "F", "M", "F", "M", "F", "F",
"M", "M", "M", "F", "M", "F", "M", "F", "F", "F", "M", "M", "F",
"M", "M", "M", "F", "M", "F", "M", "F", "M", "F", "F", "M", "M",
"M", "F", "F", "F", "", "", "F", "F", "M", "M", "F", "F", "F",
"M", "M", "F", "F", "", "M", "F", "F", "M", "M", "M", "F", "M",
"M", "M", "M", "M", "M", "M", "M", "F", "F", "F", "F", "M", "F",
"M", "M", "F", "M", "M", "M", "F", "F", "M", "M", "M", "F", "F",
"M", "F", "F", "", "M", "F", "F", "M", "M", "F", "F", "M", "",
"F", "M", "M", "M", "F", "M", "M", "F", "M", "M", "M", "F", "M",
"F", "F", "M", "M", "M", "F", "M", "F", "M", "M", "F", "F", "M",
"F", "F", "", "F", "M", "F", "M", "M", "M", "F", "F", "M", "M",
"M", "F", "F", "F", "M", "F", "M", "M", "F", "F", "M", "F", "F",
"M", "F", "", "M", "F", "M", "M", "F", "F", "F", "M", "F", "M",
"F", "F", "F", "F", "M", "M", "M", "M", "F", "M", "M", "F", "",
"M", "M", "F", "F", "F", "M", "F", "M", "F", "F", "M", "F", "F",
"M", "F", "", "", "F", "M", "M", "M", "M", "F", "F", "M", "M",
"M", "M", "M", "M", "M", "M", "F", "M", "F", "M", "M", "M", "F",
"M", "M", "F", "M", "M", "M", "F", "M", "M", "M", "M", "M", "F",
"F", "F", "F", "F", "F", "F", "M", "F", "F", "M", "F", "M", "F",
"M", "M", "F", "F", "M", "F", "F", "M", "M", "M", "M", "M", "",
"", "F", "M", "F", "F", "M", "M", "", "M", "F", "F", "F", "M",
"M", "M", "F", "F", "M", "F", "F", "M", "M", "M", "F", "F", "M",
"M", "M", "M", "F", "M", "M", "F", "M", "F", "F", "F", "M", "F",
"M", "F", "F", "M", "M", "M", "M", "F", "M", "M", "M", "F", "F",
"F", "F", "F", "F", "F", "F", "F", "M", "F", "M", "F", "F", "M",
"M", "F", "M", "M", "F", "M", "M", "F", "F", "M", "F", "M", "M",
"F", "F", "M", "F", "M", "M", "F", "F", "F", "M", "M", "M", "M",
"M", "F", "F", "M", "M", "F", "M", "F", "M", "F", "F", "F", "F",
"M", "M", "F", "M", "F", "M", "F", "F", "M", "M", "F", "F", "",
"M", "M", "F", "M", "F", "M", "F", "F", "M", "M", "M", "F", "F",
"M", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "F", "F",
"M", "F", "F", "M", "M", "F", "F", "F", "M", "M", "F", "F", "M",
"M", "F", "F", "M", "F", "F", "M", "F", "M", "F", "M", "F", "M",
"M", "M", "", "F", "F", "F", "M", "F", "F", "", "F", "F", "F",
"F", "M", "M", "M", "M", "M", "M", "M", "F", "M", "F", "F", "M",
"F", "F", "F", "M", "F", "M", "F", "F", "F", "M", "F", "M", "F",
"M", "", "F", "M", "F", "F", "M", "M", "M", "M", "M", "F", "M",
"F", "F", "M", "M", "F", "F", "F", "M", "M", "F", "", "M", "M",
"M", "F", "F", "F", "F", "M", "F", "F", "M", "F", "", "M", "F",
"F", "M", "M", "F", "M", "F", "M", "F", "M", "M", "M", "F", "F",
"M", "F", "", "M", "F", "M", "M", "F", "F", "F", "M", "F", "M",
"M", "M", "M", "F", "M", "M", "M", "M", "F", "M", "M", "M", "M",
"F", "M", "M", "", "F", "", "F", "F", "M", "", "F", "F", "F",
"F", "M", "M", "M", "F", "M", "M", "M", "M", "F", "M", "F", "M",
"M", "F", "M", "F", "F", "M", "F", "", "", "M", "F", "F", "M",
"F", "M", "F", "", "F", "F", "F", "F", "F", "M", "F", "M", "F",
"M", "M", "M", "", "F", "M", "F", "F", "M", "F", "", "M", "F",
"F", "F", "M", "M", "F", "F", "M", "F", "M", "M", "F", "", "F",
"M", "M", "F", "M", "M", "M", "M", "M", "F", "M", "F", "M", "",
"M", "", "M", "", "M", "F", "M", "M", "M", "M", "F", "F", "F",
"M", "", "", "M", "F", "M", "F", "M", "M", "F", "", "M", "M",
"F", "F", "F", "M", "F", "M", "F", "F", "F", "M", "M", "M", "F",
"M", "F", "F", "M", "M", "M", "M", "M", "M", "M", "M", "F", "F",
"M", "M", "M", "M", "M", "F", "M", "F", "F", "F", "F", "M", "F",
"M", "M", "M", "F", "M", "", "F", "F", "F", "", "M", "M", "M",
"M", "M", "M", "F", "M", "F", "F", "F", "F", "M", "F", "F", "F",
"M", "M", "M", "F", "F", "F", "F", "M", "M", "M", "M", "F", "F",
"F", "F", "M", "F", "M", "M", "M", "F", "M", "M", "F", "M", "F",
"F", "M", "M", "F", "M", "M", "M", "M", "M", "M", "F", "F", "F",
"F", "M", "M", "M", "M", "F", "M", "M", "M", "M", "M", "M", "F",
"F", "M", "F", "M", "M", "M", "F", "F", "M", "F", "F", "F", "F",
"M", "F", "M", "M", "M", "F", "F", "F", "M", "F", "M", "F", "M",
"M", "F", "M", "F", "M", "F", "M", "F", "F", "F", "F", "M", "M",
"M", "F", "M", "F", "M", "F", "F", "F", "M", "M", "F", "F", "M",
"F", "M", "F", "M", "F", "M", "F", "F", "M", "M", "M", "M", "M",
"M", "M", "M", "F", "M", "", "M", "", "M", "", "M", "F", "M",
"F", "F", "F", "M", "F", "M", "M", "F", "M", "F", "F", "M", "M",
"M", "F", "M", "", "F", "F", "M", "F", "M", "F", "M", "M", "M",
"F", "F", "M", "F", "F", "M", "M", "F", "F", "M", "F", "M", "M",
"M", "M", "", "F", "F", "F", "M", "F", "M", "M", "F", "M", "F",
"M", "F", "M", "F", "F", "M", "M", "M", "M", "M", "M", "M", "M",
"F", "F", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "F",
"M", "M", "M", "F", "M", "M", "M", "F", "M", "M", "M", "F", "M",
"F", "M", "M", "M", "F", "F", "M", "M", "M", "M", "M", "M", "M",
"M", "F", "F", "F", "M", "", "M", "M", "M", "F", "F", "F", "M",
"M", "", "M", "F", "F", "M", "M", "M", "M", "F", "M", "F", "M",
"M", "F", "M", "M", "M", "M", "M", "F", "M", "F", "F", "M", "M",
"M", "M", "F", "M", "F", "M", "F", "F", "F", "F", "F", "M", "M",
"F", "F", "M", "M", "F", "M", "M", "M", "F", "F", "F", "F", "F",
"M", "M", "M", "M", "F", "M", "F", "M", "F", "M", "M", "M", "M",
"M", "M", "F", "F", "M", "M", "F", "F", "M", "F", "M", "F", "M",
"M", "M", "M", "M", "M", "F", "", "M", "M", "F", "M", "M", "F",
"M", "M", "M", "M", "M", "F", "F", "F", "M", "F", "M", "M", "F",
"M", "F", "M", "M", "M", "F", "F", "M", "F", "F", "F", "M", "M",
"M", "F", "M", "M", "M", "M", "F", "M", "M", "M", "M", "F", "F",
"M", "F", "F", "M", "F", "", "F", "F", "F", "M", "M", "M", "M",
"M", "M", "F", "F", "", "F", "M", "M", "F", "M", "M", "F", "F",
"F", "M", "M", "F", "F", "F", "F", "M", "F", "", "", "", "",
"M", "F", "M", "F", "M", "F", "M", "M", "M", "F", "F", "M", "M",
"M", "M", "F", "F", "F", "M", "F", "F", "M", "F", "M", "F", "M",
"M", "M", "F", "M", "F", "M", "M", "F", "M", "M", "M", "M", "M",
"M", "M", "M", "M", "M", "F", "F", "M", "F", "F", "M", "F", "M",
"M", "F", "M", "F", "M", "F", "M", "F", "F", "M", "M", "M", "F",
"M", "M", "F", "M", "M", "M", "F", "F", "F", "M", "F", "F", "",
"M", "M", "F", "M", "M", "M", "M", "F", "M", "F", "F", "F", "M",
"M", "M", "F", "M", "M", "", "M", "M", "F", "M", "F", "M", "M",
"F", "F", "F", "F", "M", "M", "M", "F", "", "F", "M", "M", "M",
"M", "M", "F", "F", "M", "F", "M", "F", "F", "F", "M", "M", "M",
"F", "F", "F", "F", "M", "M", "F", "M", "M", "F", "M", "F", "F",
"F", "", "M", "F", "M", "F", "M", "M", "M", "F", "M", "M", "M",
"M", "F", "M", "M", "M", "M", "M", "M", "M", "M", "M", "F", "F",
"M", "F", "F", "F", "F", "M", "M", "M", "M", "M", "F", "F", "M",
"M", "M", "M", "F", "F", "M", "F", "F", "M", "F", "M", "F", "M",
"F", "M", "M", "M", "M", "F", "F", "M", "M", "M", "M", "F", "F",
"M", "F", "M", "F", "M", "F", "M", "M", "F", "M", "M", "M", "F",
"F", "F", "F", "M", "M", "F", "M", "F", "F", "M", "M", "M", "M",
"M", "F", "M", "M", "M", "F", "M", "F", "M", "M", "F", "F", "M",
"M", "F", "F", "M", "M", "M", "F", "F", "M", "M", "F", "F", "F",
"M", "M", "M", "F", "M", "F", "M", "M", "F", "M", "", "F", "M",
"F", "M", "M", "F", "F", "M", "F", "M", "F", "M", "F", "M", "F",
"F", "M", "M", "M", "M", "F", "F", "", "F", "M", "M", "M", "M",
"M", "M", "F", "", "M", "F", "F", "F", "", "M", "M", "M", "F",
"M", "M", "F", "M", "M", "M", "M", "M", "M", "F", "M", "F", "F",
"M", "M", "F", "F", "M", "M", "F", "M", "M", "F", "F", "M", "F",
"M", "M", "M", "F", "F", "M", "F", "F", "M", "F", "F", "", "M",
"M", "M", "M", "M", "M", "F", "M", "M", "M", "F", "M", "F", "F",
"M", "", "M", "F", "F", "F", "M", "M", "M", "M", "F", "M", "F",
"F", "M", "F", "M", "M", "M", "F", "M", "F", "F", "M", "M", "F",
"M", "F", "M", "M", "M", "F", "M", "F", "M", "F", "M", "M", "M",
"M", "F", "F", "F", "F", "M", "F", "F", "M", "F", "F", "F", "M",
"M", "F", "M", "M", "F", "M", "F", "M", "M", "M", "F", "F", "M",
"F", "M", "M", "", "F", "F", "F", "M", "M", "M", "M", "M", "F",
"F", "M", "M", "F", "F", "M", "M", "F", "M", "M", "F", "M", "F",
"M", "", "F", "F", "F", "F", "M", "F", "M", "F", "F", "F", "F",
"M", "F", "F", "M", "F", "F", "F", "M", "M", "M", "M", "F", "F",
"F", "F", "M", "M", "F", "M", "F", "M", "M", "M", "M", "M", "F",
"", "F", "F", "F", "F", "M", "F", "M", "F", "M", "M", "M", "M",
"M", "M", "M", "F", "M", "M", "F", "F", "M", "M", "F", "M", "F",
"F", "F", "F", "M", "M", "F", "F", "F", "M", "F", "F", "M", "M",
"M", "F", "F", "M", "F", "F", "F", "M", "", "M", "F", "F", "M",
"M", "M", "F", "M", "F", "M", "F", "M", "M", "M", "F", "M", "F",
"F", "F", "F", "F", "M", "M", "M", "F", "M", "F", "M", "F", "F",
"F", "F", "F", "F", "M", "M", "", "F", "M", "", "F", "M", "F",
"M", "M", "M", "M", "F", "F", "F", "M", "M", "M", "M", "F", "F",
"F", "F", "M", "", "F", "F", "F", "F", "F", "F", "", "M", "F",
"F", "M", "M", "F", "M", "M", "M", "M", "F", "F", "M", "F", "M",
"F", "M", "M", "M", "F", "F", "M", "F", "F", "F", "M", "M", "M",
"F", "M", "F", "", "M", "M", "", "F", "F", "M", "F", "F", "F",
"M", "F", "M", "F", "M", "", "M", "F", "M", "M", "F", "F", "M",
"F", "", "M", "F", "M", "", "F", "M", "M", "M", "M", "M", "F",
"M", "M", "M", "M", "M", "F", "M", "F", "M", "M", "M", "M", "M",
"M", "F", "F", "M", "M", "M", "", "M", "M", "", "M", "F", "F",
"F", "F", "F", "F", "F", "", "M", "F", "", "M", "M", "F", "M",
"M", "", "M", "F", "M", "", "M", "", "F", "M", "F", "M", "F",
"F", "", "F", "M", "F", "F", "F", "F", "M", "", "M", "M", "",
"F", "", "", "F", "F", "F", "M", "M", "F", "F", "F", "F", "F",
"M", "F", "F", "M", "M", "F", "M", "F", "F", "M", "F", "F", "F",
"M", "", "M", "F", "M", "M", "M", "", "M", "", "M", "", "F",
"M", "F", "M", "F", "F", "F", "M", "M", "M", "F", "M", "F", "M",
"F", "", "M", "F", "M", "M", "F", "M", "M", "F", "M", "M", "F",
"F", "F", "M", "F", "", "M", "F", "", "M", "M", "M", "F", "F",
"M", "F", "F", "M", "F", "F", "M", "M", "M", "F", "M", "M", "F",
"M", "M", "M", "F", "M", "F", "M", "M", "F", "M", "F", "F", "M",
"M", "F", "F", "F", "F", "F", "M", "F", "F", "M", "F", "M", "M",
"F", "F", "F", "M", "M", "F", "", "F", "F", "M", "M", "F", "M",
"M", "M", "M", "F", "F", "M", "M", "M", "M", "M", "M", "", "F",
"M", "F", "M", "M", "F", "M", "F", "F", "F", "F", "F", "M", "M",
"M", "F", "F", "M", "F", "M", "F", "F", "M", "M", "F", "F", "F",
"F", "F", "M", "F", "F", "M", "", "M", "M", "F", "M", "M", "F",
"F", "F", "F", "F", "F", "F", "F", "F", "F", "F", "F", "M", "M",
"M", "M", "M", "F", "M", "F", "F", "F", "F", "M", "F", "M", "M",
"M", "F", "F", "F", "M", "M", "M", "", "M", "F", "M", "M", "F",
"M", "M", "M", "F", "F", "F", "F", "", "M", "M", "M", "M", "F",
"M", "M", "M", "F", "M", "M", "F", "F", "M", "F", "F", "F", "M",
"F", "M", "F", "F", "F", "M", "M", "F", "F", "M", "M", "F", "M",
"M", "", "F", "F", "F", "M", "F", "M", "F", "M", "M", "F", "F",
"F", "F", "M", "F", "M", "M", "M", "M", "M", "F", "M", "F", "M",
"F", "F", "M", "F", "M", "M", "F", "", "M", "M", "F", "F", "M",
"M", "", "M", "M", "M", "M", "M", "F", "M", "M", "F", "M", "F",
"M", "M", "M", "F", "F", "M", "F", "M", "M", "M", "F", "M", "M",
"M", "M", "M", "F", "F", "F", "F", "", "F", "F", "F", "M", "F",
"M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "M", "F", "M",
"M", "F", "F", "F", "F", "M", "M", "F", "F", "", "F", "F", "F",
"F", "F", "F", "M", "F", "F", "", "F", "M", "M", "M", "M", "M",
"F", "F", "F", "F", "F", "F", "M", "M", "M", "M", "M", "F", "M",
"F", "F", "F", "M", "F", "F", "F", "M", "F", "F", "M", "M", "F",
"F", "", "F", "F", "M", "M", "M", "M", "M", "F", "F", "", "F",
"M", "F", "M", "M", "F", "F", "M", "M", "M", "M", "F", "M", "M",
"M", "F", "M", "M", "F", "F", "M", "F", "M", "M", "M", "M", "F",
"F", "F", "F", "M", "M", "F", "M", "M", "M", "M", "F", "M", "M",
"F", "M", "M", "M", "M", "F", "F", "M", "F", "M", "M", "F", "M",
"F", "M", "M", "F", "F", "M", "M", "F", "M", "F", "M", "M", "F",
"M", "F", "M", "F", "F", "M", "F", "M", "F", "F", "F", "M", "F",
"M", "F", "F", "M", "M", "M", "F", "M", "F", "F", "F", "F", "M",
"F", "F", "F", "F", "M", "M", "M", "F", "M", "F", "F", "F", "M",
"M", "M", "F", "M", "F", "M", "F", "M", "F", "F", "M", "F", "F",
"F", "F", "F", "F", "F", "F", "M", "F", "F", "M", "F", "F", "F",
"F", "F", "F", "M", "F", "M", "F", "M", "M", "F", "F", "M", "M",
"F", "F", "F", "M", "F", "F", "M", "F", "M", "M", "F", "M", "M",
"F", "M", "F", "M", "M", "M", "F", "F", "F", "M", "M", "M", "M",
"M", "M", "F", "F", "M", "F", "M", "M", "M", "F"), hindfoot_length = c(32L,
33L, 37L, 36L, 35L, 14L, NA, 37L, 34L, 20L, 53L, 38L, 35L, NA,
36L, 36L, 48L, 22L, NA, 48L, 34L, 31L, 36L, 21L, 35L, 31L, 36L,
38L, NA, 52L, 37L, 35L, 36L, NA, 38L, 22L, 35L, 33L, 36L, 36L,
34L, 46L, 36L, 35L, 36L, 35L, 32L, 36L, 17L, 32L, 36L, 26L, 36L,
37L, 36L, 34L, NA, 45L, 33L, 20L, 35L, 35L, 35L, 37L, 34L, 35L,
35L, 32L, 15L, 21L, 36L, 31L, 44L, 12L, 32L, 47L, NA, 16L, 34L,
48L, 14L, 35L, 37L, 35L, 35L, 33L, 11L, 35L, 20L, 35L, 50L, 35L,
NA, 36L, 38L, 36L, 36L, 38L, 37L, 54L, 35L, 35L, 35L, 43L, 35L,
NA, NA, 21L, 35L, NA, 37L, 37L, 13L, 32L, 34L, 37L, 19L, 33L,
35L, 35L, NA, 33L, 37L, 36L, 35L, 30L, 33L, 34L, 34L, 34L, 37L,
33L, 37L, 45L, 35L, 16L, 35L, 37L, 15L, 33L, 36L, 34L, 35L, 40L,
37L, 36L, 37L, 37L, 50L, 35L, 35L, 38L, 50L, 47L, NA, 35L, 36L,
36L, 53L, 37L, 37L, 39L, 21L, 36L, 50L, 13L, 36L, 36L, 37L, 36L,
NA, NA, 36L, 37L, 33L, 45L, NA, 33L, 37L, 34L, 35L, 49L, 37L,
52L, 19L, 34L, 36L, 48L, 33L, 36L, 47L, 36L, NA, NA, 50L, 15L,
37L, 35L, 36L, 52L, 47L, 32L, 38L, 37L, 50L, 52L, 53L, 37L, 35L,
36L, 48L, NA, 35L, NA, 36L, 13L, 19L, 13L, 36L, 52L, NA, 52L,
50L, NA, NA, 37L, NA, 38L, 35L, NA, NA, 48L, 25L, 35L, 37L, 47L,
50L, 20L, 48L, 53L, NA, 19L, 38L, 36L, 37L, 37L, 54L, NA, 36L,
51L, 36L, 53L, 38L, 36L, 35L, 36L, 37L, 36L, 36L, 36L, 36L, 19L,
37L, 49L, 38L, NA, 46L, 36L, 37L, 36L, 50L, NA, 37L, 20L, 37L,
50L, 20L, 50L, 19L, 37L, NA, NA, 34L, 37L, 36L, 50L, 38L, 37L,
38L, 33L, 47L, 36L, 36L, 37L, 36L, 18L, NA, 36L, 19L, NA, 48L,
36L, 36L, 37L, 35L, 33L, 36L, 48L, 49L, NA, 18L, 36L, 35L, NA,
36L, 37L, 32L, 33L, 36L, 35L, NA, 47L, 33L, 50L, NA, 47L, 37L,
50L, 16L, NA, 37L, 52L, 36L, 35L, 37L, 49L, 36L, 50L, 34L, NA,
NA, 34L, 37L, 38L, 36L, NA, 37L, NA, 36L, NA, 38L, NA, 32L, 50L,
16L, 36L, 35L, 36L, 51L, NA, 37L, 38L, NA, 51L, 16L, 36L, 35L,
36L, 36L, 34L, 37L, 15L, 15L, 48L, 33L, 36L, 33L, 48L, 37L, 52L,
36L, 50L, NA, NA, 36L, NA, NA, 15L, 53L, NA, 48L, 36L, 36L, 16L,
50L, 36L, NA, 37L, NA, NA, 50L, 9L, 36L, 53L, 36L, 52L, 49L,
34L, 36L, 38L, 51L, 37L, 36L, 37L, 36L, 36L, 37L, 33L, NA, 15L,
NA, NA, 38L, 16L, NA, 37L, 37L, 36L, 36L, 16L, NA, NA, 35L, 38L,
NA, NA, 37L, 51L, 35L, 33L, 51L, NA, 36L, 36L, NA, 36L, 36L,
49L, 49L, NA, 51L, 32L, 35L, NA, 15L, NA, 49L, NA, 15L, NA, NA,
47L, NA, 36L, 47L, 35L, 37L, 49L, 37L, 52L, NA, 38L, 37L, NA,
37L, 48L, 49L, 49L, NA, NA, 36L, NA, 16L, 51L, NA, NA, 36L, NA,
36L, NA, 35L, 36L, NA, 16L, 36L, 48L, NA, 16L, NA, 38L, 26L,
36L, 38L, 15L, 36L, 37L, 36L, NA, 34L, 51L, 37L, 51L, 36L, 37L,
NA, NA, NA, NA, NA, 36L, 34L, 47L, 36L, 36L, 49L, NA, 38L, NA,
NA, 53L, 38L, 36L, 50L, 51L, 50L, NA, 48L, 36L, 37L, 49L, 36L,
50L, 53L, 51L, NA, 36L, 36L, NA, NA, NA, NA, 38L, NA, 34L, 38L,
36L, NA, NA, NA, NA, NA, 53L, 35L, NA, NA, 39L, 16L, 38L, 39L,
38L, 38L, 37L, NA, 33L, NA, 15L, 37L, 36L, 37L, NA, 22L, 36L,
34L, 49L, 37L, 20L, NA, 49L, 49L, 49L, 36L, 38L, 47L, 39L, 49L,
NA, 46L, NA, 35L, 35L, 20L, NA, NA, NA, 18L, 20L, 55L, 38L, 36L,
38L, 37L, 35L, 50L, 38L, 36L, 35L, 38L, 38L, 32L, 52L, 37L, 35L,
15L, 38L, 14L, 47L, 37L, 32L, 49L, 54L, 21L, 20L, 37L, NA, 15L,
18L, 35L, 35L, 21L, 35L, 21L, 50L, 20L, 20L, 15L, NA, 49L, 52L,
49L, 49L, NA, NA, NA, NA, 35L, NA, NA, NA, 48L, 53L, 36L, 50L,
NA, NA, 37L, NA, 37L, 36L, NA, 36L, 37L, NA, 35L, NA, 35L, NA,
NA, NA, 20L, 49L, 37L, 36L, 15L, NA, 36L, 35L, NA, 35L, 37L,
47L, 37L, NA, 16L, 37L, NA, NA, 36L, 47L, 19L, 33L, 36L, 18L,
NA, 36L, NA, 19L, NA, 48L, 18L, 36L, 21L, 37L, 20L, 35L, NA,
NA, NA, 35L, 49L, 36L, 37L, 32L, 20L, NA, 34L, 49L, 48L, NA,
NA, 50L, 35L, 36L, 35L, NA, NA, 37L, 35L, NA, 37L, 36L, 37L,
37L, 20L, 36L, NA, 37L, 37L, 47L, NA, 39L, 52L, 50L, 36L, 52L,
50L, 53L, 34L, 49L, 35L, 33L, 50L, 50L, 48L, 36L, 35L, 46L, NA,
48L, 34L, 47L, 47L, 35L, 51L, 47L, NA, 55L, 38L, 46L, 37L, 49L,
NA, 35L, 34L, 48L, 33L, 38L, NA, 20L, 36L, NA, 48L, 38L, 14L,
38L, 53L, 49L, 48L, 37L, 51L, 37L, NA, 38L, 50L, 46L, 32L, NA,
35L, 32L, 36L, 48L, 46L, 36L, 49L, 36L, NA, 37L, NA, 13L, NA,
19L, 52L, 48L, NA, 37L, 37L, 37L, 50L, 33L, 49L, NA, 52L, 50L,
37L, 33L, 36L, 50L, NA, 35L, 52L, 20L, 49L, 36L, NA, 34L, 34L,
50L, 49L, 35L, 50L, 48L, 35L, 50L, 50L, 21L, 35L, 33L, 37L, 48L,
NA, 35L, 52L, 33L, 34L, 36L, 33L, 36L, 37L, 48L, NA, 37L, NA,
18L, 50L, 52L, 21L, 35L, 15L, 48L, 50L, 34L, 37L, 36L, 35L, 48L,
NA, 48L, 36L, 46L, 37L, 20L, 47L, NA, 38L, 51L, 51L, 36L, 32L,
NA, 50L, 49L, 36L, 33L, 37L, 49L, 34L, 21L, 34L, 52L, 36L, 47L,
49L, 33L, 36L, 47L, NA, 36L, 47L, 50L, 36L, NA, 35L, 49L, 13L,
15L, NA, 32L, NA, 47L, 49L, 35L, 15L, 34L, 18L, NA, 51L, 21L,
51L, 36L, NA, 50L, NA, 23L, 38L, 54L, 33L, 16L, 48L, 49L, 51L,
34L, 46L, 34L, NA, 53L, 50L, 54L, 37L, 37L, 32L, 20L, 47L, 52L,
46L, 35L, 50L, NA, 49L, 36L, 36L, 49L, 38L, 49L, 37L, 49L, 50L,
35L, 22L, 19L, 36L, 32L, 51L, 22L, 38L, 35L, 31L, 51L, 52L, 33L,
37L, 53L, 37L, 35L, 36L, 50L, 49L, 51L, 50L, 35L, 37L, 49L, 50L,
33L, 35L, 52L, 51L, 36L, 51L, 35L, 48L, 37L, 38L, 37L, 49L, 16L,
37L, 52L, 19L, 20L, 50L, 35L, 38L, 21L, 50L, 23L, 50L, 36L, 33L,
38L, 34L, 36L, 36L, 51L, 34L, 23L, 38L, 35L, 51L, 36L, 51L, 34L,
36L, 52L, 51L, 36L, 49L, 50L, NA, 49L, NA, 38L, 51L, 51L, 49L,
20L, 37L, 19L, 51L, 35L, 35L, NA, 49L, 22L, 20L, 48L, 33L, 30L,
38L, 53L, 33L, 15L, 38L, 22L, 37L, 52L, 35L, 51L, 33L, NA, 52L,
35L, 19L, 35L, 36L, 38L, 37L, 20L, 47L, 20L, 52L, 19L, 37L, 32L,
38L, 38L, 36L, 52L, 37L, 49L, 36L, 50L, 48L, 34L, 48L, 36L, 49L,
16L, 53L, NA, 34L, 47L, 48L, 34L, 31L, 51L, 37L, NA, 49L, 37L,
21L, 22L, 33L, 35L, 38L, 35L, 48L, 21L, 50L, 37L, 36L, 51L, 47L,
NA, 51L, 50L, 22L, 51L, 34L, 21L, NA, 37L, 51L, 51L, 23L, 30L,
35L, NA, 52L, 37L, 35L, 36L, 51L, 35L, 51L, 51L, NA, 16L, 39L,
39L, 16L, 21L, 38L, 31L, 22L, 20L, 50L, 51L, 50L, 34L, 22L, 36L,
38L, 16L, 51L, 15L, 21L, 49L, 20L, 22L, NA, 50L, 50L, 20L, 34L,
35L, 47L, 52L, 38L, 15L, 38L, 34L, 38L, 36L, 21L, 52L, 37L, 21L,
21L, NA, 36L, 48L, 32L, 36L, 48L, 20L, 16L, 53L, 51L, 48L, 38L,
35L, 51L, 36L, 50L, 51L, 17L, 35L, 38L, 49L, NA, 52L, NA, 16L,
20L, 33L, 32L, 20L, 48L, 19L, 36L, 32L, 37L, 47L, 51L, 21L, 18L,
52L, 52L, 51L, 34L, 37L, 20L, 36L, 37L, 47L, 34L, 50L, 49L, 36L,
36L, 20L, 34L, 20L, 50L, 50L, 20L, 37L, 21L, NA, 35L, 36L, 37L,
51L, 37L, 50L, 52L, 34L, 35L, 36L, 52L, 50L, 37L, 50L, 51L, 50L,
50L, NA, NA, 38L, 49L, 37L, 50L, 15L, 38L, NA, 35L, 36L, 15L,
22L, 35L, 21L, 20L, 36L, 15L, 52L, 37L, 48L, NA, NA, 49L, 50L,
53L, 15L, 52L, 21L, 37L, 36L, 53L, 15L, 51L, NA, 23L, 48L, NA,
21L, 38L, 16L, 20L, 38L, 36L, 48L, 20L, 15L, 51L, NA, 37L, 20L,
20L, 36L, 36L, NA, 35L, 36L, 50L, 50L, 15L, 49L, 36L, NA, 47L,
20L, 37L, 36L, 33L, 35L, 20L, 50L, 48L, 20L, NA, 35L, 35L, 35L,
32L, 33L, 20L, 21L, 52L, 50L, 31L, 49L, 37L, 15L, 37L, 50L, 37L,
46L, 20L, 39L, 38L, 29L, 20L, 35L, 36L, 36L, 39L, 20L, 34L, 35L,
NA, 50L, 37L, 52L, 48L, 50L, 51L, NA, 49L, 20L, 37L, 20L, 35L,
47L, 36L, 36L, 20L, 46L, 36L, 32L, 36L, 20L, 37L, 38L, NA, 37L,
20L, 20L, 21L, 17L, 21L, 36L, 21L, 20L, 36L, 51L, 34L, 38L, 36L,
47L, 35L, 32L, 21L, 34L, 20L, 17L, 21L, 36L, 51L, 38L, 49L, 33L,
49L, 48L, 50L, 51L, 21L, 33L, 21L, 20L, 51L, 21L, 37L, 31L, 38L,
38L, 37L, 21L, 38L, 47L, 52L, 38L, 36L, 36L, 47L, 51L, 50L, 36L,
38L, NA, 51L, 21L, 20L, 37L, 38L, 35L, 51L, 38L, 36L, 47L, 21L,
20L, 22L, 21L, 36L, 22L, 22L, 20L, 38L, 37L, 48L, 37L, 36L, NA,
36L, 36L, 34L, 34L, 19L, 39L, 19L, 36L, 38L, 21L, 37L, 19L, NA,
NA, NA, NA, NA, NA, NA, 38L, NA, NA, NA, NA, 38L, NA, NA, NA,
NA, NA, NA, 34L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, 20L, 21L, 36L, 36L, 36L,
21L, NA, 37L, 52L, 21L, 52L, 35L, 36L, 50L, 52L, 34L, 50L, 36L,
37L, 36L, 50L, 50L, 37L, 21L, 20L, 52L, 36L, 52L, 20L, 38L, 52L,
19L, 37L, 50L, 51L, 19L, 49L, 51L, 51L, 35L, 22L, 35L, 21L, 35L,
36L, 38L, 37L, 22L, 21L, 51L, 34L, 48L, 36L, 20L, 36L, 36L, NA,
37L, 47L, 54L, 35L, 51L, 52L, 47L, 16L, 32L, 20L, 51L, 50L, 37L,
37L, 52L, 58L, 50L, 50L, 52L, 51L, 37L, 35L, 36L, 37L, 48L, 48L,
48L, 34L, 35L, 47L, 37L, NA, 37L, 38L, 49L, 51L, 37L, 39L, 48L,
48L, 50L, 31L, 36L, 32L, 52L, 51L, 36L, 50L, 50L, 44L, 50L, 50L,
46L, 49L, 43L, 37L, 46L, 48L, 19L, 52L, 47L, 47L, 34L, 18L, 33L,
21L, 36L, 46L, 18L, 52L, 20L, 30L, 52L, 22L, 47L, 35L, 39L, 37L,
50L, 38L, 47L, 51L, 49L, 34L, 32L, 51L, 27L, 51L, 30L, 34L, 49L,
49L, 37L, 21L, 37L, 49L, 48L, 43L, 49L, 47L, 15L, 44L, 29L, 49L,
49L, NA, 47L, 48L, 50L, 37L, 50L, 27L, 37L, 34L, 45L, 33L, 47L,
38L, 52L, 35L, 32L, 20L, 32L, 49L, 18L, 22L, 52L, 33L, 32L, NA,
50L, 50L, 35L, 35L, 47L, 35L, 32L, 51L, 51L, 50L, 51L, 37L, 51L,
49L, 22L, 37L, 36L, 36L, 37L, 35L, 51L, 21L, 20L, 16L, 48L, 35L,
50L, 15L, 46L, 52L, 30L, 49L, 50L, NA, 46L, 36L, 33L, 46L, 15L,
15L, 20L, 36L, 46L, 33L, 36L, NA, 19L, 35L, 32L, 46L, 22L, 34L,
35L, 49L, 46L, NA, NA, 51L, 52L, 50L, 38L, 20L, 49L, NA, 20L,
34L, 50L, 38L, 35L, 19L, 20L, 34L, 17L, 35L, 51L, 51L, 30L, NA,
20L, 21L, 47L, 18L, 50L, NA, 19L, 37L, 36L, 51L, 36L, 50L, 22L,
35L, 36L, 51L, 51L, 51L, 49L, 51L, 34L, 49L, 22L, 35L, 21L, 20L,
49L, 22L, 34L, 20L, 36L, 20L, 35L, 20L, 21L, 20L, 48L, 48L, 50L,
51L, 34L, 20L, 20L, 50L, 21L, 49L, 30L, 51L, 20L, 20L, 36L, 36L,
52L, NA, 49L, 35L, 50L, 48L, 20L, 18L, 29L, 34L, 52L, 37L, 20L,
51L, 20L, 34L, 52L, 35L, 36L, 30L, 33L, 20L, 20L, 48L, 51L, 49L,
49L, 21L, 49L, 35L, 50L, 35L, 48L, 50L, 52L, 21L, 31L, 20L, 38L,
19L, 20L, 37L, 20L, 51L, 53L, 20L, 37L, 52L, 19L, 31L, 50L, 35L,
20L, 37L, 36L, 19L, 52L, 47L, 47L, 39L, 19L, NA, 19L, 22L, 37L,
19L, 22L, 20L, 37L, 20L, 20L, 36L, 20L, 16L, 20L, 36L, 20L, 50L,
47L, 20L, 19L, 36L, 35L, 15L, 50L, 36L, 37L, 36L, 21L, 19L, 53L,
20L, 37L, 22L, 33L, 35L, 49L, NA, 32L, 36L, 51L, 32L, 33L, 32L,
21L, 38L, 33L, 50L, 37L, 21L, 34L, 35L, 19L, 50L, 51L, 51L, 20L,
51L, 50L, 21L, 21L, 37L, 32L, 21L, 22L, 34L, 47L, 32L, 19L, 21L,
21L, 52L, 22L, 52L, 18L, 20L, 48L, 21L, 35L, 20L, 35L, 37L, 38L,
52L, 50L, 21L, 35L, 21L, 36L, 37L, 20L, 33L, 49L, 14L, 19L, 35L,
19L, 33L, 18L, 36L, 21L, 36L, 20L, 14L, 19L, 36L, 13L, 20L, 34L,
20L, 14L, 21L, 20L, 20L, 21L, 50L, 36L, 51L, 48L, 21L, 14L, 35L,
21L, 14L, 49L, 21L, 35L, 22L, 20L, 21L, 31L, 36L, 37L, 49L, 19L,
14L, 38L, 36L, 36L, 21L, 30L, 14L, 34L, 20L, 33L, 34L, 19L, 31L,
21L, 36L, 35L, 19L, 35L, 34L, 35L, 33L, 36L, 48L, 52L, 36L, 36L,
20L, 34L, 31L, 19L, 19L, 33L, 21L, 36L, 35L, 47L, 31L, 36L, 36L,
36L, 34L, 35L, 35L, 19L, 36L, 35L, 19L, 53L, 21L, 34L, 38L, 33L,
36L, 38L, 35L, 20L, 20L, 36L, 18L, 20L, 20L, 35L, 33L, 49L, 39L,
21L, 34L, 33L, 37L, 15L, 52L, 49L, 34L, 20L, 50L, 15L, 34L, NA,
12L, 34L, 22L, 37L, 35L, 18L, 50L, 36L, 38L, 19L, 37L, 35L, 16L,
34L, 38L, 33L, 47L, 15L, 21L, 36L, 20L, 20L, 36L, 21L, 20L, 20L,
38L, 19L, 17L, 52L, 37L, 21L, 35L, 51L, 34L, 21L, 34L, 37L, 35L,
38L, 32L, 50L, 37L, 18L, 21L, 32L, 20L, 21L, 35L, 21L, 36L, 32L,
52L, 16L, NA, 17L, 16L, 36L, 20L, 37L, 31L, 20L, 46L, 22L, 35L,
33L, 50L, 16L, 16L, 35L, 34L, 37L, 38L, 36L, 35L, 20L, 36L, 35L,
34L, 36L, 48L, 36L, 35L, 21L, 35L, 34L, 21L, 37L, 35L, 20L, 35L,
36L, 37L, 38L, 34L, 37L, 36L, 37L, 35L, 35L, 32L, 34L, 35L, 34L,
36L, 37L, 35L, 20L, 36L, 21L, 36L, 22L, 20L, 21L, 37L, 35L, 36L,
15L, 14L, 50L, 48L, 21L, 35L, 36L, 47L, NA, 36L, 36L, 36L, 21L,
19L, 15L, 37L, 33L, 50L, 36L, 38L, 37L, 36L, 36L, 36L, 38L, 15L,
16L, 33L, 20L, 36L, 37L, 35L, 34L, 19L, 21L, 15L, 35L, 51L, 35L,
22L, 15L, 16L, 21L, 35L, 48L, 52L, 17L, 20L, 21L, 33L, 35L, 34L,
53L, 14L, 35L, 35L, 20L, 36L, 34L, 15L, 22L, 50L, 19L, 16L, NA,
37L, 34L, 35L, 33L, 21L, 34L, 35L, 37L, 37L, 54L, 35L, 36L, 21L,
37L, 36L, 37L, 52L, 35L, 52L, 50L, 32L, 36L, 33L, 19L, 52L, 34L,
34L, 36L, 45L, 46L, 35L, 36L, 34L, 36L, 51L, 35L, 36L, 35L, 37L,
36L, 35L, 36L, 36L, 38L, 35L, 36L, 36L, 37L, 34L, 32L, 37L, 36L,
36L, 34L, 50L, 52L, 51L, 36L, 15L, 20L, 37L, 15L, 21L, 20L, 14L,
34L, 37L, 16L, 17L, 15L, 51L, 14L, 36L, 17L, 47L, 53L, 37L, 32L,
16L, 50L, 36L, 21L, 35L, 20L, 15L, 21L, 23L, 21L, 14L, 36L, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, 14L, NA, NA, NA, NA, NA, NA,
NA, 34L, NA, 45L, NA, 47L, NA, NA, 46L, NA, NA, NA, NA, NA, NA,
47L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, 47L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, 48L, 47L, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 33L, NA, NA,
17L, NA, 52L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, 52L, 19L, 49L, NA, 15L, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 34L, 19L, 34L,
NA, 50L, 37L, 47L, 21L, 20L, 36L, 34L, NA, 43L, 51L, NA, 15L,
49L, 35L, 52L, 30L, 49L, 52L, 50L, 36L, 48L, 46L, 47L, 50L, 36L,
20L, 49L, 46L, 22L, 48L, 48L, 36L, 49L, 34L, 34L, 32L, 20L, 50L,
35L, 35L, 47L, 45L, 37L, 49L, 36L, 14L, 14L, 20L, 52L, 36L, 49L,
33L, 20L, 14L, 35L, 47L, 35L, 21L, 49L, 49L, 36L, 52L, 48L, 53L,
46L, 48L, 36L, 36L, 14L, 15L, 36L, 33L, 35L, 32L, 49L, 49L, 36L,
48L, 32L, 31L, 30L, 33L, 35L, NA, 55L, 36L, 35L, 50L, 52L, 52L,
46L, 46L, 35L, 48L, 50L, 52L, 51L, 49L, 50L, 47L, 48L, 47L, 34L,
37L, 50L, 36L, 49L, NA, 49L, 51L, 37L, NA, NA, 50L, 38L, NA,
36L, 49L, 48L, 19L, 36L, 50L, 20L, 34L, 52L, 52L, 49L, 47L, 20L,
36L, 34L, 35L, 33L, 37L, NA, 48L, 50L, 34L, 15L, 35L, NA, 21L,
47L, 46L, 54L, 35L, 50L, 50L, 47L, 50L, 19L, 51L, 34L, 32L, 35L,
47L, 50L, 51L, 36L, NA, 35L, 51L, 34L, 20L, 35L, 35L, 51L, 32L,
35L, 50L, 21L, 34L, 52L, NA, 50L, 21L, 35L, 35L, 15L, 51L, 35L,
49L, 49L, 35L, 47L, 35L, 35L, 36L, 34L, 46L, 51L, 20L, 36L, 16L,
NA, 37L, 52L, 36L, NA, NA, 29L, 36L, 47L, 20L, 20L, 16L, 52L,
34L, 20L, 34L, 50L, 37L, 53L, 51L, 50L, 50L, 50L, 35L, 34L, 36L,
NA, 32L, 36L, 53L, 35L, 45L, 36L, 38L, 37L, NA, 36L, 33L, 16L,
36L, 52L, 50L, 34L, 35L, 35L, 21L, 49L, 15L, 35L, 50L, 14L, 19L,
49L, 50L, 35L, 34L, 21L, 36L, 35L, 34L, 36L, 51L, 15L, 34L, 51L,
31L, 46L, 49L, 49L, 21L, NA, 36L, 53L, 47L, 35L, 37L, 50L, 49L,
21L, 36L, 31L, NA, 33L, 33L, 20L, 37L, 37L, 16L, 16L, 49L, 35L,
51L, 36L, 53L, 16L, 34L, 14L, 35L, 21L, 21L, 34L, 19L, 35L, 51L,
37L, 14L, 51L, 36L, 47L, 50L, 36L, NA, NA, 33L, NA, 45L, 34L,
37L, 21L, 19L, 37L, 51L, 53L, 23L, NA, 53L, 52L, 49L, 52L, 20L,
54L, 51L, 50L, 31L, 15L, 51L, 16L, 35L, 54L, 38L, 35L, 21L, NA,
NA, NA, 21L, 14L, 48L, 16L, NA, 20L, 36L, 15L, 22L, 19L, 53L,
16L, 35L, 32L, 21L, 35L, 49L, 35L, NA, 37L, 15L, 52L, 47L, 20L,
37L, 14L, 37L, 36L, 21L, 51L, 49L, 36L, 15L, 21L, 52L, 23L, 21L,
50L, 20L, 17L, 20L, 47L, 21L, 50L, 37L, 20L, 49L, 36L, 20L, 31L,
20L, 37L, 51L, 38L, 51L, 34L, 37L, 31L, 14L, 19L, 15L, 20L, 52L,
51L, 53L, 20L, 34L, 16L, 20L, 37L, 37L, 51L, 20L, 20L, 19L, 36L,
33L, 37L, 19L, 20L, 51L, 48L, 53L, 52L, 16L, 47L, 38L, 47L, 15L,
50L, 34L, 36L, 49L, 37L, 36L, 20L, 20L, 36L, 19L, 20L, 21L, 35L,
19L, 36L, 21L, 37L, 20L, 37L, 35L, 51L, 20L, 50L, 20L, 34L, 51L,
22L, 19L, 15L, 34L, 52L, 36L, 19L, 51L, 35L, 48L, 49L, NA, 31L,
36L, 37L, 33L, 21L, 37L, 48L, 52L, 50L, 16L, 14L, 36L, 35L, 20L,
33L, 39L, 36L, 50L, 19L, 51L, 37L, 35L, 52L, 35L, 35L, 36L, 36L,
51L, 37L, 19L, 36L, 20L, NA, 35L, 36L, 37L, 51L, 48L, 34L, 50L,
36L, 50L, 47L, 49L, 35L, 34L, 37L, 35L, 36L, 50L, 36L, 36L, 19L,
36L, 35L, 36L, 35L, 20L, 48L, 35L, 35L, 36L, 50L, 36L, 38L, 37L,
35L, 38L, 36L, 36L, 33L, 35L, 37L, 21L, 36L, 50L, 15L, 19L, 37L,
49L, 21L, 31L, 47L, 50L, 36L, 34L, 20L, 20L, 35L, 52L, 49L, 36L,
50L, 36L, 15L, 34L, 50L, 48L, 20L, 20L, 37L, 38L, 36L, 50L, 36L,
20L, 36L, 36L, 15L, 20L, 14L, 37L, 36L, 20L, 35L, 34L, 51L, 34L,
35L, 37L, 37L, 33L, 33L, 21L, 21L, 52L, 19L, 33L, 15L, 36L, 21L,
21L, 19L, 48L, 35L, 53L, 34L, 38L, 20L, 34L, 53L, 21L, 35L, 52L,
20L, 47L, 37L, 48L, 16L, 48L, 35L, 36L, 36L, 36L, 34L, 35L, 19L,
35L, 15L, 51L, 36L, 49L, 35L, 36L, 34L, 35L, 36L, 52L, 37L, 36L,
36L, NA, 39L, 36L, 35L, 50L, 47L, 36L, 36L, 36L, 35L, 36L, 34L,
36L, 37L, 47L, 49L, 35L, 49L, 50L, 36L, 35L, 34L, 35L, 36L, 36L,
35L, 35L, 48L, 51L, 34L, 35L, NA, 37L, 35L, 33L, 21L, 37L, 37L,
49L, 50L, 36L, 36L, 20L, 16L, 31L, 33L, 37L, 35L, 52L, 21L, 37L,
38L, 36L, 37L, 37L, 46L, 15L, 51L, 49L, 37L, 47L, 49L, 20L, 51L,
35L, 50L, 45L, 49L, 35L, 20L, 31L, 15L, 37L, 21L, 31L, 35L, 35L,
20L, 36L, 40L, 36L, 19L, 36L, 50L, 35L, 29L, 37L, 32L, 34L, 50L,
35L, 36L, 16L, 19L, 22L, 15L, 19L, 20L, 48L, 16L, 51L, 34L, 47L,
33L, 17L, 49L, 48L, 20L, 19L, 50L, 37L, 36L, 19L, 36L, 17L, 49L,
47L, 19L, 36L, 20L, 32L, 36L, 35L, 35L, 34L, 20L, 37L, 51L, 48L,
36L, 37L, 36L, 33L, 37L, 36L, 36L, 36L, 50L, 20L, 48L, 53L, 35L,
50L, 35L, 46L, 36L, 35L, 35L, 37L, 21L, 19L, 45L, 49L, 35L, 34L,
37L, 37L, 47L, 36L, 36L, 37L, 35L, 51L, 20L, 16L, 35L, 34L, 15L,
57L, 33L, 35L, 20L, 48L, 36L, 35L, 15L, 37L, 52L, 36L, 36L, 36L,
37L, 38L, 20L, 37L, 51L, 52L, 36L, 20L, 36L, NA, 36L, 37L, 38L,
21L, 37L, 36L, 19L, 32L, 21L, 30L, 20L, 50L, 21L, 51L, 50L, 21L,
46L, 36L, 48L, 48L, 15L, 21L, 35L, 15L, 16L, 21L, 36L, 48L, 48L,
49L, 50L, 16L, 32L, 37L, 16L, 35L, 51L, 34L, 36L, 21L, 20L, 21L,
36L, 48L, 38L, 34L, 36L, 37L, 37L, 45L, 36L, 15L, 36L, 50L, 52L,
15L, 37L, 35L, 51L, 37L, 35L, 50L, 34L, 37L, 48L, 35L, 37L, 36L,
36L, 35L, 36L, 51L, 36L, 53L, 35L, 36L, 34L, 36L, 36L, 37L, 50L,
48L, 20L, 38L, 35L, 52L, 37L, 36L, 36L, 37L, 37L, 37L, 15L, 50L,
36L, 22L, 17L, 22L, NA, 51L, 17L, 21L, 53L, 37L, 21L, 53L, 36L,
34L, 35L, NA, 36L, 37L, 51L, 16L, 18L, 51L, 39L, 48L, 52L, 36L,
36L, 47L, 51L, 36L, 37L, 37L, 21L, 53L, 47L, 21L, 34L, 22L, 21L,
35L, 21L, 35L, 38L, 36L, 51L, 50L, 36L, 36L, NA, 36L, 55L, 49L,
37L, 39L, 37L, 38L, 50L, 34L, 36L, 35L, 37L, 50L, 54L, 36L, 38L,
53L, 20L, 20L, 51L, 48L, 35L, 34L, 48L, 51L, 16L, 36L, 52L, 37L,
19L, 16L, 19L, 36L, 37L, 49L, 23L, 53L, 52L, 19L, NA, 34L, 36L,
48L, 16L, 53L, 16L, NA, 36L, 35L, 38L, 35L, 37L, 53L, 36L, 38L,
48L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 39L, NA, NA, NA,
NA, 53L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 15L, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 34L,
NA, 48L, NA, NA, NA, NA, 50L, 47L, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 20L, 37L, NA,
NA, 22L, NA, NA, NA, NA, NA, NA, NA, 47L, NA, 15L, NA, NA, NA,
46L, NA, NA, NA, NA, NA, NA, NA, NA, NA, 49L, NA, 29L, NA, NA,
NA, NA, NA, 49L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, 36L, NA, NA, NA, NA, NA, NA, NA,
50L, NA, NA, 47L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
35L, NA, 36L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, 36L, 14L, 21L, 35L, 20L, 37L, 20L, NA, 35L, 19L, 21L, 47L,
37L, 33L, 51L, 20L, 34L, 49L, NA, 17L, 36L, 35L, 37L, 37L, 52L,
51L, NA, 36L, 37L, 36L, 50L, 52L, 52L, NA, 32L, 35L, 48L, 33L,
50L, NA, 37L, 34L, NA, 36L, 48L, 21L, 35L, NA, 36L, 33L, 35L,
48L, 35L, 37L, 36L, 36L, 35L, 35L, 35L, 21L, 36L, 34L, 36L, 36L,
36L, 50L, 34L, 34L, 48L, 49L, 36L, 35L, 35L, 49L, 37L, 51L, 21L,
36L, 48L, 37L, 49L, 36L, 54L, 51L, 15L, 57L, 32L, 33L, 36L, 34L,
37L, 15L, 36L, 35L, 54L, 49L, 14L, 34L, 47L, 50L, 33L, 50L, 14L,
52L, 35L, 38L, 36L, 50L, 50L, 37L, 14L, 51L, 36L, 53L, 49L, 48L,
48L, 37L, 37L, 14L, 37L, 35L, 37L, 49L, 21L, 38L, 34L, 36L, 11L,
35L, 54L, 36L, 35L, 36L, 32L, 37L, NA, 49L, 53L, 47L, 46L, 36L,
36L, 34L, 53L, 21L, 21L, 55L, 37L, 53L, 52L, 35L, 37L, 34L, 35L,
50L, 55L, 50L, 21L, 15L, 15L, 22L, 53L, 49L, 18L, 19L, 22L, 48L,
51L, 31L, 37L, 54L, 36L, 22L, 52L, 38L, 35L, 52L, 37L, 35L, 36L,
37L, 34L, 34L, 20L, 47L, 37L, 37L, 32L, 36L, 39L, 37L, NA, 22L,
21L, 33L, 16L, 34L, 36L, 36L, 53L, 49L, 52L, 52L, 20L, 53L, 52L,
47L, 47L, 37L, 21L, 32L, 16L, 53L, 51L, 52L, 35L, 52L, 35L, 36L,
37L, 35L, 37L, 37L, 37L, NA, NA, 37L, 20L, 37L, 31L, 38L, 37L,
36L, 36L, 34L, 37L, 37L, 34L, 48L, 36L, 34L, 37L, 34L, 52L, 35L,
21L, 51L, 52L, 32L, 20L, 53L, 48L, 49L, 36L, 35L, 34L, 36L, 16L,
35L, 47L, 37L, 36L, 37L, 35L, 37L, 22L, 37L, 46L, 36L, 53L, NA,
34L, NA, 36L, 37L, 35L, 52L, NA, 15L, 13L, 51L, 15L, 15L, 15L,
34L, 51L, 47L, 36L, 30L, 49L, 52L, 50L, 52L, 35L, 51L, 34L, 49L,
31L, 35L, 36L, 36L, 50L, 36L, 37L, 47L, 37L, 37L, 16L, 37L, 54L,
33L, 33L, 37L, 49L, 21L, 17L, 21L, 51L, 50L, 52L, 34L, 48L, 52L,
37L, 37L, NA, 54L, 19L, 38L, 48L, 35L, 34L, 37L, 21L, 19L, 20L,
39L, 37L, 36L, 19L, 35L, 37L, 48L, 52L, 21L, 36L, 35L, 38L, 36L,
35L, 34L, 34L, 49L, 22L, 22L, 36L, 36L, 49L, 22L, 36L, 36L, 35L,
20L, 15L, 36L, 37L, NA, 36L, 36L, 33L, 36L, 37L, 49L, 37L, 52L,
37L, 38L, 49L, 52L, 33L, 52L, 36L, NA, 54L, 37L, NA, 36L, 35L,
37L, 37L, 23L, 51L, 32L, 35L, 36L, 35L, 34L, 37L, 36L, 35L, 50L,
36L, 52L, 38L, 31L, 16L, 36L, 38L, 49L, 31L, 21L, 34L, 37L, 38L,
52L, 38L, 37L, 21L, 37L, 37L, 38L, 37L, 52L, 21L, 52L, 38L, 36L,
34L, 36L, 22L, 21L, 32L, 19L, 38L, 37L, 22L, 32L, 31L, 49L, 36L,
39L, 37L, 49L, 37L, 37L, 32L, 19L, 20L, 23L, 36L, 52L, 36L, 36L,
22L, 22L, 52L, 52L, 34L, 19L, 52L, 37L, 52L, 54L, 50L, 53L, 21L,
37L, 20L, 37L, 20L, NA, 34L, 36L, 21L, 37L, 36L, 21L, 39L, 36L,
39L, 36L, 36L, 36L, 51L, 21L, 36L, 21L, 36L, 19L, 21L, 37L, 21L,
21L, 19L, 21L, 19L, 37L, 34L, 21L, 34L, 19L, 39L, 49L, 36L, 21L,
34L, 20L, 20L, 20L, 36L, 36L, 21L, 49L, 39L, 33L, 16L, 16L, 38L,
38L, 51L, 22L, 36L, 37L, 38L, 39L, 51L, 35L, 35L, 23L, 37L, 20L,
34L, 34L, 15L, 38L, 49L, 24L, 52L, 38L, 54L, 34L, 54L, 37L, 37L,
38L, 38L, 53L, 22L, 51L, 21L, 22L, 22L, 37L, NA, 35L, 36L, 48L,
18L, 21L, 16L, 41L, 38L, 19L, 21L, 36L, NA, 52L, 37L, 36L, 37L,
21L, 52L, 38L, 51L, 37L, 22L, 22L, 33L, 22L, NA, 39L, 33L, 37L,
21L, 21L, 37L, 22L, 47L, 38L, 52L, 21L, 38L, 52L, 22L, 37L, 36L,
21L, 17L, 37L, 17L, 49L, 38L, 22L, 39L, 37L, 21L, 38L, 20L, 16L,
37L, 36L, 33L, NA, NA, 51L, 52L, 49L, 36L, 17L, 37L, 36L, 36L,
36L, NA, 36L, 35L, 36L, 37L, 33L, 53L, 38L, 36L, 36L, 52L, 36L,
34L, 21L, 37L, 36L, 53L, 17L, 39L, 37L, 50L, 37L, 16L, 20L, 37L,
16L, 51L, 37L, 55L, 36L, 17L, 39L, 37L, NA, 37L, 19L, 37L, 37L,
21L, 47L, 21L, 36L, 52L, 51L, 23L, 18L, 17L, 21L, 51L, 22L, 37L,
15L, 17L, 18L, 23L, 37L, 17L, 49L, 17L, 19L, 22L, 49L, 34L, 16L,
52L, 16L, 36L, 18L, 35L, 22L, 22L, 36L, 49L, 36L, 17L, 23L, 16L,
22L, 31L, 33L, 36L, 36L, 49L, 49L, 36L, 17L, 38L, 33L, 49L, 34L,
35L, 36L, 22L, 38L, 15L, 21L, 33L, 37L, 17L, 23L, 33L, 21L, 49L,
33L, 17L, 50L, 53L, 36L, 37L, 22L, 19L, 36L, 38L, 34L, 21L, 36L,
51L, 34L, 37L, 36L, 37L, 34L, 16L, 33L, 17L, 34L, 49L, 15L, 36L,
35L, 52L, 35L, 49L, 52L, 53L, 50L, 20L, 36L, 16L, 37L, 20L, 37L,
NA, 37L, 16L, 36L, 19L, 38L, 35L, 21L, 16L, 36L, 17L, 36L, 18L,
37L, 36L, 35L, 19L, 52L, 37L, 36L, 20L, 32L, 15L, 35L, 37L, 34L,
37L, 35L, 38L, 16L, 16L, 19L, 49L, 21L, 51L, 18L, 34L, 38L, 38L,
37L, 15L, 20L, 36L, 33L, 16L, 17L, 51L, 35L, 51L, 19L, 38L, 20L,
37L, 36L, 37L, 17L, 33L, 17L, 51L, 14L, 16L, 35L, NA, 34L, 36L,
16L, 37L, 35L, 19L, 36L, 20L, 34L, 34L, 36L, 21L, 20L, 35L, 16L,
34L, 32L, 37L, 19L, 48L, 21L, NA, 21L, 35L, 21L, 32L, 36L, 36L,
19L, 14L, 18L, 52L, 36L, 36L, 37L, 34L, 35L, 35L, 37L, 15L, 15L,
21L, 37L, 20L, 16L, 50L, 20L, 15L, 32L, 15L, 20L, 37L, 50L, 19L,
21L, 16L, 35L, 22L, 36L, 19L, 17L, 16L, 36L, 36L, 37L, 37L, 36L,
NA, 20L, 21L, 37L, 20L, 49L, 15L, 16L, 21L, 14L, 37L, 37L, NA,
37L, 36L, 49L, 32L, 18L, 36L, 48L, 16L, 20L, 32L, 20L, 14L, 52L,
37L, 33L, 21L, 21L, NA, 17L, 51L, 36L, 16L, 15L, 36L, 17L, 16L,
34L, 16L, 37L, 36L, 51L, 37L, 37L, 38L, 51L, 37L, 19L, 37L, 31L,
17L, 16L, 17L, 16L, 15L, 17L, 16L, 33L, 16L, 33L, 16L, 34L, 20L,
37L, 33L, 17L, 35L, 36L, 36L, 49L, 17L, 37L, 16L, 16L, 21L, 32L,
34L, 16L, 35L, 19L, 36L, 20L, 36L, 21L, 16L, 16L, 36L, 36L, 49L,
36L, 36L, 38L, 17L, 37L, 38L, 38L, 35L, 39L, 17L, 16L, 34L, 51L,
37L, 51L, 19L, 16L, 16L, 47L, 18L, 18L, 16L, 20L, 17L, 36L, 17L,
16L, NA, 49L, 36L, 35L, 37L, 36L, 17L, 17L, 36L, 37L, 37L, 50L,
37L, 18L, 21L, 21L, 37L, 34L, 37L, 37L, 36L, 37L, NA, 21L, 21L,
16L, 49L, 20L, 15L, 49L, 51L, 52L, 19L, 48L, 38L, 52L, 17L, 35L,
51L, 18L, 36L, 36L, 34L, 21L, 34L, 52L, 19L, 16L, 19L, 45L, 36L,
20L, 51L, 22L, 36L, 17L, 36L, 50L, 21L, 16L, 19L, 35L, 20L, 20L,
17L, 21L, 36L, 51L, 16L, 51L, 36L, 37L, 32L, 49L, 21L, 16L, 38L,
17L, 49L, 16L, 18L, 17L, 16L, 18L, 17L, 36L, 52L, 37L, 18L, 17L,
20L, 21L, 50L, 15L, NA, 18L, 17L, 19L, 17L, 16L, 20L, 34L, 36L,
17L, 34L, 21L, 36L, 35L, 15L, 37L, 33L, 51L, 20L, 16L, 20L, 35L,
16L, 16L, 15L, 20L, 16L, 37L, 35L, 37L, 21L, 35L, 36L, 20L, 21L,
17L, 19L, 17L, 20L, 17L, 31L, 34L, 35L, 15L, 46L, 16L, 36L, 36L,
16L, 33L, 17L, 51L, 16L, 21L, 22L, 35L, 34L, NA, 19L, 37L, 16L,
35L, 49L, 35L, 32L, 37L, 34L, 36L, 35L, 31L, 35L, 16L, 38L, 32L,
37L, 16L, 35L, 36L, NA, 35L, 51L, 46L, 37L, 21L, 21L, 36L, 51L,
21L, 37L, 31L, 37L, 45L, 51L, 21L, 19L, 21L, 47L, 52L, 17L, 36L,
17L, 17L, 16L, 36L, 34L, 47L, 16L, 24L, 37L, 18L, 19L, 16L, 21L,
36L, 51L, 16L, 45L, 36L, 49L, 38L, 16L, 16L, 36L, 38L, 36L, 34L,
45L, 21L, 35L, 37L, 51L, 15L, 50L, 36L, 21L, 37L, 36L, 20L, 19L,
19L, 16L, 48L, 19L, 37L, 22L, 21L, 16L, 48L, NA, 19L, 21L, 34L,
37L, 35L, 52L, 33L, 36L, 52L, 50L, 21L, 51L, 48L, 16L, 37L, 37L,
20L, 17L, 36L, 21L, 36L, 19L, 17L, 37L, 51L, 22L, 37L, 17L, 20L,
51L, 34L, 37L, 34L, 36L, 47L, 20L, 36L, 17L, 20L, 48L, 37L, 49L,
20L, 32L, 19L, 44L, 17L, 37L, 37L, 20L, 36L, 36L, 16L, 34L, 37L,
36L, NA, 37L, 36L, 16L, 49L, 22L, 36L, 19L, 17L, 50L, 35L, 52L,
29L, 51L, 17L, 32L, 49L, 38L, 19L, 49L, 51L, 49L, 35L, 19L, 17L,
15L, 33L, 38L, 49L, 16L, 50L, 51L, 37L, 52L, 26L, 21L, 37L, 36L,
31L, 51L, 48L, 48L, 8L, 22L, 48L, 49L, 35L, 35L, 17L, 16L, 49L,
49L, 33L, 37L, 16L, 36L, 35L, 36L, 52L, 50L, 21L, 51L, 36L, 16L,
34L, 51L, 46L, 36L, 16L, 19L, 21L, 19L, 51L, NA, 39L, 16L, 33L,
32L, 32L, 37L, 36L, 15L, 36L, 21L, 36L, 48L, 34L, 28L, 52L, 16L,
17L, 37L, 49L, 35L, 49L, 34L, 48L, 51L, 49L, 49L, 53L, 18L, 17L,
NA, 36L, 37L, 48L, 48L, 36L, 36L, 34L, 32L, 36L, 22L, NA, 48L,
20L, 36L, 50L, 34L, 36L, 13L, 36L, 51L, 21L, 33L, 16L, 36L, 22L,
49L, 16L, 48L, 35L, 19L, 37L, 20L, 34L, NA, 37L, 32L, 52L, 20L,
36L, 19L, 23L, 21L, 36L, 15L, 20L, 35L, 50L, 15L, 21L, 35L, 18L,
34L, 33L, 52L, 33L, NA, 16L, 16L, 36L, 20L, 47L, NA, 33L, 49L,
36L, 51L, 52L, 36L, 48L, 50L, 35L, 36L, 21L, 36L, 36L, 19L, 16L,
37L, 19L, 34L, 50L, 37L, 49L, 49L, 49L, 38L, 35L, 36L, 18L, 53L,
35L, 52L, 37L, 48L, 19L, 19L, 16L, 14L, 32L, 22L, 51L, 19L, 35L,
35L, 37L, 21L, 36L, 49L, 37L, 52L, 35L, 36L, 20L, 35L, 21L, NA,
NA, 18L, 33L, NA, 16L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, 35L, NA, NA, NA, 16L, 34L, 17L, NA,
NA, 37L, 35L, 53L, NA, NA, 33L, 36L, 33L, 30L, NA, NA, NA, NA,
NA, 37L, 17L, NA, NA, 51L, 37L, NA, 33L, NA, NA, NA, 53L, NA,
NA, NA, NA, 36L, NA, 35L, 34L, NA, 36L, NA, NA, 36L, 37L, NA,
NA, NA, 31L, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, 36L, NA, NA, NA, NA, NA, NA, NA, NA, 36L, 50L, NA, NA,
NA, NA, NA, NA, NA, 36L, NA, 35L, NA, 37L, NA, NA, 34L, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, 37L, NA, NA, NA, 35L, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 49L, NA,
NA, NA, NA, 49L, NA, NA, NA, NA, NA, NA, 37L, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 52L,
36L, 20L, 20L, 18L, 49L, NA, 36L, 34L, 35L, 48L, 35L, 20L, 22L,
48L, 38L, 35L, 21L, 36L, 16L, 15L, 20L, 20L, 36L, 51L, 52L, NA,
15L, NA, 37L, 20L, 36L, 23L, 38L, 35L, 20L, 34L, 51L, 36L, 34L,
22L, 16L, 34L, 37L, 52L, 35L, 21L, 20L, 15L, 37L, 31L, 49L, 47L,
20L, 32L, 35L, 34L, 20L, 16L, NA, 35L, 21L, 54L, 34L, 31L, 15L,
50L, 37L, 20L, 33L, 36L, 34L, 51L, 37L, 20L, 49L, 34L, 21L, NA,
35L, 54L, NA, 20L, 36L, 20L, 15L, 31L, 34L, NA, 36L, 15L, 38L,
15L, 19L, 34L, 21L, 52L, NA, 49L, 35L, 20L, 36L, 50L, 21L, 37L,
50L, 18L, 34L, 36L, 52L, 35L, 15L, 19L, 35L, 20L, 16L, 49L, 15L,
16L, 35L, 36L, 14L, 16L, 20L, 34L, 36L, 35L, NA, 36L, 35L, 35L,
34L, 52L, 36L, 33L, 33L, 49L, 37L, 31L, 16L, 37L, 34L, 20L, 35L,
16L, 50L, 52L, 30L, 16L, 32L, NA, 50L, 35L, 36L, 20L, 48L, 35L,
34L, 33L, 36L, NA, NA, 49L, 21L, 20L, 15L, 35L, 31L, 20L, NA,
37L, 20L, 20L, 33L, 36L, 36L, 17L, 21L, 37L, 35L, 15L, 36L, 21L,
35L, 48L, 21L, 34L, 50L, 37L, 51L, 36L, 34L, 49L, 22L, 20L, 51L,
34L, 48L, 46L, 32L, 17L, 21L, 34L, 35L, 34L, 53L, 39L, 36L, 36L,
36L, 32L, 21L, 37L, 48L, 35L, 50L, 52L, 20L, 21L, NA, 20L, 35L,
37L, 37L, 48L, NA, 49L, 47L, 52L, 49L, 20L, 16L, 37L, 20L, 34L,
21L, 37L, 21L, 36L, NA, 35L, 36L, 34L, 51L, 34L, 37L, 16L, 36L,
19L, 19L, 35L, 37L, 36L, 21L, 35L, 19L, 36L, 20L, 36L, 21L, 37L,
36L, 22L, 20L, 21L, 36L, 20L, 21L, 15L, NA, 15L, 35L, 37L, 36L,
36L, 19L, 37L, 16L, 16L, 36L, 37L, 19L, 15L, 32L, 22L, 36L, 21L,
35L, 36L, 16L, 33L, 21L, 50L, 36L, 51L, 36L, 52L, 20L, 47L, 16L,
21L, 22L, 37L, 23L, 20L, 38L, 22L, 21L, 34L, 37L, 36L, 20L, 32L,
38L, 51L, 37L, 36L, 36L, 36L, 20L, 36L, 50L, 36L, 16L, 36L, 16L,
21L, 15L, 22L, 38L, 49L, 35L, 20L, 33L, 18L, 20L, 35L, 21L, 37L,
34L, 49L, 35L, 20L, 37L, 22L, 34L, 37L, 16L, 16L, 36L, 22L, 20L,
16L, 36L, 35L, 38L, 36L, 47L, 17L, 36L, 16L, 35L, 37L, 37L, 34L,
21L, 37L, 36L, 35L, 37L, 36L, 36L, 33L, 47L, 51L, 19L, 17L, 36L,
36L, 52L, 21L, 36L, 16L, 16L, 38L, 31L, 47L, 19L, 15L, 36L, 34L,
37L, 34L, 21L, 35L, 34L, 49L, 16L, NA, 51L, 34L, 16L, 49L, 34L,
22L, 20L, 36L, 16L, 36L, 21L, 51L, 51L, 35L, 51L, 49L, 16L, 20L,
21L, 21L, 16L, 19L, 21L, 37L, 35L, 38L, 47L, 37L, 35L, 36L, 16L,
52L, 38L, 37L, 36L, 36L, 50L, 36L, 20L, 35L, 22L, 21L, 21L, 19L,
51L, 20L, NA, 34L, 36L, 20L, 21L, 35L, 20L, 36L, 21L, 21L, 33L,
21L, 37L, 35L, 48L, 49L, 36L, 35L, 19L, 47L, 36L, 37L, 35L, 36L,
37L, NA, 37L, 37L, 35L, NA, 36L, 37L, 37L, 20L, 37L, 21L, 35L,
36L, 51L, 35L, 50L, 16L, 18L, 21L, 34L, 21L, 53L, 47L, 36L, 51L,
49L, 49L, 21L, 35L, 37L, 34L, 51L, 52L, 36L, 35L, 16L, 36L, 50L,
52L, 35L, 16L, 16L, 49L, 17L, 39L, 52L, 36L, 37L, 35L, 50L, 19L,
52L, 34L, 51L, 20L, 36L, 36L, 52L, 33L, 17L, 51L, 34L, 37L, 54L,
16L, 33L, 36L, 20L, 52L, 17L, 19L, 38L, 37L, 20L, NA, 36L, 51L,
21L, 50L, 35L, 22L, 21L, 37L, 49L, 36L, 21L, 20L, 37L, 21L, 34L,
NA, 36L, 35L, 49L, 48L, 37L, 37L, 36L, 53L, 21L, 37L, 36L, 36L,
37L, 37L, 21L, 19L, 16L, 21L, 35L, 49L, 34L, 49L, 22L, 36L, 34L,
37L, 20L, 38L, 36L, 38L, 36L, 36L, 35L, 48L, 36L, 50L, 38L, 36L,
49L, 33L, NA, 21L, 33L, 16L, 52L, 22L, 34L, 34L, 38L, 37L, 21L,
16L, 35L, 21L, 15L, 34L, 46L, 36L, 34L, 21L, 16L, 37L, 33L, 19L,
36L, 49L, 52L, 20L, 16L, 36L, 34L, 48L, 19L, 21L, 36L, 18L, 36L,
17L, 35L, 36L, 36L, 35L, 17L, 17L, 16L, 16L, 21L, 36L, 16L, 34L,
16L, 37L, 52L, 35L, 37L, 17L, 34L, 16L, 50L, 49L, 35L, 17L, 34L,
18L, 31L, NA, 16L, 36L, 35L, 32L, 36L, 49L, 19L, 22L, 16L, 30L,
15L, 34L, 34L, 37L, 16L, 15L, 14L, 16L, 34L, 49L, 51L, 52L, 34L,
35L, 16L, 48L, 35L, 32L, 51L, 53L, 32L, 36L, 33L, 21L, 30L, 38L,
36L, 34L, 14L, 36L, 51L, 35L, 35L, 34L, 37L, 47L, 15L, 36L, 34L,
20L, 35L, 35L, NA, 17L, 36L, 33L, 21L, 36L, 17L, 16L, 15L, 21L,
20L, 36L, 35L, 19L, 15L, 16L, 15L, 36L, 49L, 36L, 34L, 36L, 34L,
35L, 34L, 22L, 20L, 37L, 37L, 50L, 36L, 16L, 49L, 16L, 15L, 34L,
52L, 51L, 19L, 35L, 33L, 21L, 36L, 37L, 50L, 15L, 33L, 15L, 48L,
35L, 22L, 33L, 48L, 37L, 19L, 36L, 34L, 21L, 37L, 35L, 35L, 36L,
21L, 36L, 32L, 36L, 35L, 32L, 37L, 37L, 15L, 50L, 21L, 16L, 51L,
38L, 17L, 33L, 22L, 20L, 50L, 21L, 17L, 21L, 48L, 36L, 16L, 34L,
34L, 37L, 21L, 35L, 18L, 37L, 16L, 21L, 37L, 36L, 36L, 21L, 50L,
19L, 35L, 16L, 49L, 35L, 17L, 21L, 37L, 17L, 29L, 15L, 37L, 16L,
17L, 37L, 37L, 15L, 37L, 16L, 36L, 21L, 15L, 17L, 21L, 33L, 49L,
49L, 37L, 37L, 17L, 17L, 36L, 37L, 38L, 36L, 16L, 51L, 18L, 19L,
22L, 15L, 36L, 36L, 17L, 36L, 35L, 21L, 35L, 37L, 34L, 36L, 15L,
35L, 36L, 21L, 34L, 37L, 35L, 15L, 35L, 35L, 35L, 35L, 34L, 51L,
34L, 35L, 35L, 37L, 38L, 14L, 37L, 46L, 35L, 21L, 35L, 37L, 15L,
36L, 15L, 16L, 36L, 38L, 35L, 36L, 35L, 36L, 34L, 49L, 36L, 38L,
35L, 52L, 36L, NA, 39L, 36L, 36L, 35L, 36L, 37L, 37L, 35L, 37L,
51L, 16L, 48L, 34L, 22L, 36L, 37L, 36L, 36L, 37L, 20L, 51L, 19L,
51L, 37L, 35L, 34L, 17L, 20L, 35L, 35L, 21L, 35L, 17L, 21L, 37L,
37L, 21L, 36L, 37L, 36L, 51L, 21L, 21L, 17L, 16L, 36L, 21L, 34L,
37L, 19L, 37L, 17L, 36L, 14L, 36L, 37L, 21L, 36L, 49L, 21L, 34L,
33L, 37L, 35L, 16L, 37L, 37L, 37L, 16L, 35L, 35L, 21L, 22L, 18L,
49L, 35L, 16L, 37L, 35L, 18L, 34L, 52L, 34L, 37L, 39L, 34L, 17L,
36L, 36L, 16L, 34L, 15L, 17L, 36L, 17L, 37L, 49L, 38L, 35L, 17L,
35L, 34L, 34L, 35L, 48L, 21L, 38L, 37L, 36L, 35L, 21L, 37L, 37L,
19L, 36L, 16L, 49L, 19L, 37L, 37L, 36L, 16L, 20L, 15L, 35L, 38L,
50L, 36L, 17L, 37L, 34L, 16L, 36L, 21L, 37L, 51L, NA, 35L, 18L,
19L, 36L, 37L, 36L, 36L, 36L, 35L, 16L, 51L, 37L, NA, 16L, 35L,
37L, NA, 15L, 17L, 34L, 17L, 52L, 15L, 15L, 50L, 16L, 33L, 36L,
14L, 34L, 17L, 16L, 17L, NA, 51L, 34L, 50L, 16L, 16L, 36L, 16L,
21L, 17L, 20L, 17L, 36L, 35L, 16L, 16L, 36L, 36L, 16L, 34L, 37L,
36L, 37L, 18L, 50L, 36L, 17L, 37L, 35L, 37L, 21L, 15L, 35L, NA,
22L, 33L, 20L, 20L, 18L, 16L, 34L, 15L, 36L, 18L, 37L, 50L, 17L,
15L, 36L, 34L, 36L, 35L, 37L, 16L, 37L, 48L, 15L, 35L, 51L, 37L,
16L, 34L, 50L, 37L, 21L, 36L, 37L, 35L, 35L, 22L, 16L, 16L, 15L,
37L, 34L, 33L, 20L, 19L, 35L, 37L, 33L, 36L, 35L, 34L, 50L, 34L,
37L, 14L, 15L, 15L, 17L, 19L, 16L, 48L, 49L, 35L, 37L, 21L, 21L,
34L, 49L, 16L, 36L, 16L, 36L, 17L, 36L, 50L, 15L, 35L, 22L, 16L,
NA, 16L, 36L, 15L, 16L, 52L, 35L, 36L, 15L, 37L, 51L, 20L, 19L,
35L, 36L, 21L, 37L, 34L, 36L, 17L, 15L, 51L, 38L, 14L, 35L, 36L,
34L, 35L, 36L, 50L, 35L, 21L, 35L, 21L, 37L, 16L, 38L, 35L, 20L,
19L, 37L, 52L, 16L, 16L, 38L, 21L, 36L, 32L, NA, 53L, 17L, 20L,
28L, 17L, 38L, 37L, 18L, 35L, 51L, 49L, 17L, 52L, 17L, 17L, 36L,
16L, 38L, NA, 37L, 50L, 52L, 49L, 38L, 17L, 18L, 37L, 34L, 36L,
51L, 21L, 36L, 37L, 36L, 37L, NA, 51L, 37L, 50L, 36L, 17L, 21L,
21L, 32L, 16L, 17L, 35L, 17L, 37L, 37L, 49L, 17L, 35L, 38L, 17L,
22L, 37L, 37L, 16L, 21L, 17L, 16L, 37L, 48L, 50L, 19L, 38L, 34L,
36L, 20L, 35L, 15L, 51L, 52L, 47L, 17L, 37L, 16L, 16L, 16L, 38L,
49L, 20L, 50L, 37L, 36L, 48L, 36L, 37L, 16L, 37L, 49L, 17L, 47L,
50L, 21L, 37L, 36L, 35L, 17L, 37L, 16L, 16L, 51L, 16L, 36L, 17L,
52L, 50L, 37L, 17L, NA, 21L, 34L, 19L, 21L, 48L, 21L, 36L, 35L,
15L, 48L, 17L, 47L, 38L, 16L, 49L, 47L, 17L, 37L, 17L, 17L, 53L,
21L, 36L, 51L, 36L, 16L, 53L, 20L, 36L, 20L, 16L, 51L, 17L, 37L,
49L, 37L, 38L, 36L, 36L, 22L, 49L, 17L, 36L, 18L, 21L, 15L, 38L,
21L, 52L, 20L, 52L, 18L, 23L, 49L, 36L, 37L, 20L, 48L, 48L, 16L,
15L, 34L, 39L, 51L, 38L, 15L, 16L, 19L, 37L, 21L, 37L, 50L, 19L,
50L, 50L, 20L, 34L, 35L, 19L, 20L, 36L, 19L, 36L, 20L, 51L, 36L,
17L, 47L, 31L, 37L, 32L, 19L, 37L, 21L, 16L, 37L, 32L, 20L, 50L,
51L, 37L, 17L, 35L, 16L, 20L, 35L, 21L, 16L, 22L, 37L, 22L, 51L,
51L, 37L, 36L, 20L, 38L, 17L, 16L, 38L, 16L, 20L, 50L, 36L, 21L,
52L, 50L, 35L, 16L, 49L, 54L, 38L, 22L, 21L, 36L, 33L, 37L, 19L,
50L, 16L, 16L, 31L, 50L, 49L, 52L, 16L, 17L, 48L, 15L, 21L, 36L,
20L, 48L, 51L, 36L, 35L, 36L, 37L, 17L, 52L, 34L, 37L, 17L, 35L,
17L, 17L, 19L, 49L, 33L, 16L, 37L, 37L, 33L, 35L, 34L, 31L, 22L,
50L, 50L, 48L, 21L, 35L, 19L, 49L, 33L, 35L, 35L, 30L, 32L, 50L,
35L, 31L, 15L, 30L, 49L, 36L, 20L, 32L, 18L, 36L, 33L, 50L, 20L,
36L, 15L, 32L, 20L, 36L, 20L, 36L, 33L, 36L, 21L, 34L, 33L, 47L,
16L, 35L, 31L, 34L, 52L, 16L, NA, 21L, 16L, 36L, 52L, 35L, 32L,
19L, 21L, 36L, 20L, NA, 50L, 53L, 32L, 33L, 48L, 49L, 35L, 15L,
37L, 38L, 36L, 34L, 18L, 16L, 36L, 20L, 50L, 49L, NA, 21L, 51L,
30L, 38L, 16L, 16L, 16L, 37L, 49L, 34L, 51L, 20L, 29L, 16L, 51L,
48L, 17L, 51L, 36L, 35L, 49L, 35L, 52L, 20L, 34L, 52L, NA, 36L,
34L, 20L, 48L, 35L, 37L, 35L, 23L, 35L, 21L, 16L, 35L, 33L, 31L,
52L, 34L, 32L, 20L, 34L, 34L, 48L, 36L, 49L, 32L, 16L, 32L, 36L,
35L, 36L, 16L, 32L, 21L, 36L, 19L, 32L, 20L, 37L, 20L, 51L, 18L,
35L, 21L, 14L, 34L, 35L, 50L, 35L, 32L, 35L, 22L, 47L, 21L, 16L,
51L, 31L, 51L, 34L, 38L, NA, 34L, 20L, 34L, 35L, 37L, 20L, 36L,
19L, 34L, 37L, 36L, 20L, 36L, 53L, 34L, 35L, 34L, 22L, 16L, 31L,
21L, 50L, 22L, 37L, 15L, 22L, 36L, 34L, 21L, 22L, NA, 33L, 34L,
48L, 31L, 20L, 37L, 35L, 19L, 35L, 17L, 36L, 49L, 49L, 35L, 19L,
35L, 49L, 48L, 21L, 33L, 22L, 32L, 37L, 34L, 30L, 50L, 35L, 47L,
35L, 20L, 48L, 36L, NA, 32L, 51L, 21L, 32L, 36L, 35L, 37L, 35L,
36L, 34L, 33L, 36L, 47L, 19L, 35L, 36L, 35L, 35L, 32L, 35L, 36L,
21L, 35L, 20L, 35L, 35L, 37L, 20L, NA, 37L, 21L, 21L, 32L, 32L,
35L, 35L, 50L, 21L, 48L, NA, 34L, 22L, 22L, 34L, 36L, 16L, 35L,
20L, 16L, 52L, NA, 16L, 16L, 36L, 49L, 16L, 21L, 51L, 33L, 37L,
36L, 20L, 34L, 37L, 34L, 16L, 50L, 36L, 52L, 21L, 34L, 21L, 34L,
33L, 35L, 50L, 51L, 22L, 36L, 15L, 22L, 21L, 16L, 52L, 22L, 35L,
33L, 22L, 32L, 33L, 30L, 34L, 51L, 34L, 35L, 51L, 32L, 48L, 34L,
37L, 20L, 32L, 34L, 32L, 51L, 36L, 21L, 36L, 32L, 37L, 32L, 31L,
35L, 48L, 33L, 36L, 48L, 36L, 15L, 36L, 35L, 37L, 37L, 21L, 35L,
49L, 48L, NA, 35L, 36L, 16L, 52L, 21L, 36L, 35L, 34L, 36L, NA,
37L, 35L, 37L, 32L, 32L, 34L, 34L, 21L, 37L, 37L, 20L, 51L, 35L,
35L, 34L, 20L, 33L, 16L, 34L, 20L, 36L, 20L, 49L, 52L, NA, 49L,
53L, 17L, 37L, 22L, 22L, 36L, 16L, 34L, 53L, 37L, 32L, 48L, 35L,
52L, 34L, 35L, 31L, 34L, 37L, 36L, 17L, 48L, 36L, 49L, 18L, 50L,
36L, 35L, 32L, 16L, 34L, 35L, 21L, 51L, 16L, 16L, 54L, NA, 32L,
48L, 51L, 20L, 34L, 36L, 21L, 32L, 36L, 36L, 15L, NA, 36L, 22L,
36L, 36L, 22L, 22L, 35L, 33L, 36L, 21L, 34L, 50L, 51L, 36L, 50L,
35L, 52L, NA, 34L, 48L, 21L, 48L, 19L, 16L, 33L, 16L, NA, 34L,
14L, 48L, 36L, 36L, 36L, 35L, 50L, 51L, 36L, 34L, 48L, 21L, 36L,
NA, 17L, 33L, 35L, 51L, 20L, 20L, 21L, NA, 18L, 36L, 36L, 36L,
34L, 37L, 36L, 19L, 36L, 36L, 16L, 35L, 37L, 20L, 20L, 51L, NA,
37L, 31L, 34L, 36L, 19L, 53L, 34L, 35L, 34L, 34L, 33L, 47L, 51L,
32L, 35L, 22L, 19L, 53L, 36L, 36L, 34L, 52L, 34L, 31L, 48L, 52L,
20L, 37L, 32L, 34L, 33L, 36L, 20L, 37L, 34L, 36L, 48L, 51L, 35L,
50L, 32L, 48L, 32L, 49L, 34L, 36L, 15L, 36L, 35L, 35L, 36L, 51L,
33L, 21L, 20L, 48L, 34L, 36L, 34L, 36L, 51L, 35L, 35L, 34L, 35L,
52L, 50L, 54L, NA, 31L, 22L, 19L, 36L, 36L, 34L, 52L, 35L, 46L,
35L, 34L, 31L, 36L, 36L, 21L, 18L, 16L, 51L, 32L, 50L, 36L, 32L,
36L, 21L, 52L, 50L, 36L, 20L, 50L, 34L, 36L, 15L, 20L, 19L, 37L,
22L, 35L, 20L, 16L, 35L, 20L, 48L, 21L, 15L, 34L, 36L, 36L, 21L,
50L, 34L, 17L, 36L, 37L, 21L, 35L, 35L, 36L, 52L, 35L, 21L, 36L,
36L, 36L, 20L, 49L, 35L, 37L, 16L, 36L, 16L, 34L, 49L, 36L, 21L,
34L, 37L, 36L, 36L, 34L, 52L, 51L, 32L, 16L, NA, 52L, 16L, 37L,
54L, 35L, 47L, 21L, 36L, 34L, 33L, 20L, 47L, 36L, 35L, NA, 49L,
21L, 21L, 22L, 36L, 49L, 20L, 34L, 19L, 35L, 32L, 35L, 52L, 21L,
35L, 32L, 36L, 52L, 36L, 35L, 36L, 51L, 15L, 15L, 36L, 35L, 32L,
35L, 19L, 36L, 34L, NA, 52L, 32L, 35L, 22L, 36L, 21L, 34L, 49L,
48L, 35L, 36L, 36L, 19L, 51L, 20L, 52L, 37L, 17L, 21L, 19L, 37L,
19L, 33L, 21L, 34L, 22L, 21L, 50L, 15L, 34L, 50L, 36L, 36L, 21L,
22L, 15L, 35L, 35L, 20L, 36L, 52L, 36L, 37L, 21L, 35L, 47L, 52L,
36L, 37L, 49L, 37L, 35L, 36L, 51L, 36L, 31L, 21L, 16L, 36L, 17L,
37L, 16L, 32L, 37L, 16L, 32L, 37L, 49L, 36L, 21L, 51L, 36L, 34L,
50L, 48L, 35L, 22L, 32L, 20L, 36L, 51L, 51L, 34L, 49L, 50L, 37L,
20L, 36L, 36L, 35L, 32L, 52L, 35L, 34L, 37L, 34L, 36L, 21L, 36L,
36L, 33L, 22L, 21L, 33L, 34L, 34L, 19L, 35L, 52L, 17L, 52L, 21L,
37L, 50L, 52L, 36L, 48L, 20L, 36L, 35L, 54L, 36L, 35L, 36L, 16L,
37L, 21L, 36L, 35L, 35L, 14L, 53L, 21L, 35L, 16L, 35L, 37L, NA,
36L, 37L, 17L, 17L, 17L, 20L, 37L, 21L, 37L, 36L, 52L, 21L, 17L,
49L, 21L, 36L, 51L, 52L, 37L, 49L, 53L, 37L, 38L, 50L, 37L, NA,
16L, 36L, NA, 17L, 37L, 16L, 17L, 36L, 37L, 51L, 17L, 37L, 37L,
36L, 34L, 38L, 51L, 21L, 36L, 50L, 17L, 17L, 22L, 36L, 52L, 37L,
33L, 36L, 38L, 37L, 37L, 51L, 36L, 16L, 37L, 22L, 16L, 37L, 38L,
52L, 36L, 37L, 36L, 37L, 37L, 36L, 36L, 37L, 36L, 37L, 36L, 49L,
37L, 37L, 16L, 37L, 53L, 21L, 37L, 37L, 22L, 35L, 52L, 36L, 36L,
NA, 22L, 51L, 36L, 16L, 20L, 21L, 36L, 36L, 36L, 36L, 52L, 16L,
NA, 37L, 17L, 49L, 37L, 35L, 51L, 36L, 50L, 36L, 49L, 20L, 36L,
36L, 36L, 36L, 37L, 35L, 36L, 51L, 37L, 51L, 37L, 22L, 21L, 37L,
36L, 36L, NA, 51L, 48L, 36L, 36L, 36L, 35L, 37L, 32L, 52L, 51L,
35L, 22L, 21L, 36L, 36L, 37L, 36L, 21L, 36L, 35L, 37L, 51L, 47L,
22L, 50L, 31L, NA, 37L, NA, 51L, 21L, 20L, 37L, 16L, 21L, 50L,
33L, 36L, 48L, 35L, 16L, 36L, 26L, 36L, 36L, 51L, 37L, 36L, 16L,
48L, 50L, 31L, 52L, 16L, 50L, 36L, 36L, 16L, 52L, 37L, 36L, 23L,
51L, 35L, 33L, 37L, 36L, 22L, 34L, NA, 21L, 35L, 36L, 37L, 49L,
35L, 21L, 36L, 35L, 21L, 22L, 21L, 20L, 24L, 52L, 32L, 50L, 36L,
37L, 20L, 36L, 21L, 37L, 38L, 14L, 35L, 35L, 37L, 50L, 36L, 34L,
34L, 52L, 19L, 21L, 37L, 37L, 32L, 51L, 36L, 38L, 34L, 37L, 35L,
35L, 36L, 35L, 34L, 34L, 36L, 19L, 34L, 19L, 16L, 36L, 33L, 36L,
36L, 36L, NA, 22L, 32L, 47L, 18L, 36L, 34L, 37L, 37L, 34L, 26L,
36L, 19L, 37L, 35L, 33L, 36L, 20L, 19L, 34L, 49L, 38L, 21L, 33L,
36L, 37L, 36L, 36L, 35L, 33L, 36L, 34L, 21L, 37L, 18L, 36L, 34L,
37L, 36L, 32L, 36L, 37L, 36L, 53L, 20L, 35L, 17L, 36L, 35L, 35L,
51L, 20L, 37L, 20L, 49L, 37L, 36L, 32L, 36L, 22L, 17L, 21L, 35L,
35L, 16L, 37L, 34L, 35L, 35L, 37L, 51L, 34L, 37L, 51L, 36L, 35L,
37L, 34L, 49L, 35L, 36L, 35L, 33L, 37L, 36L, 36L, 37L, 35L, 36L,
36L, 37L, 21L, 36L, 36L, 35L, 36L, 35L, 36L, 21L, 37L, NA, 19L,
33L, 21L, 34L, 21L, 37L, 32L, 36L, 50L, 20L, 36L, 36L, 38L, 21L,
19L, 37L, 16L, 21L, 36L, 32L, 32L, 33L, 32L, 48L, 37L, 36L, 35L,
31L, 34L, 17L, 34L, 37L, 17L, 22L, NA, 36L, 16L, 35L, 33L, 19L,
19L, 50L, 21L, 20L, 22L, 22L, 35L, 36L, 36L, 33L, 35L, 35L, 21L,
35L, 16L, 36L, 35L, 34L, 20L, 32L, 36L, 37L, 33L, 36L, 18L, 35L,
36L, 35L, 19L, 21L, 23L, 36L, 32L, 32L, 32L, 34L, 20L, 19L, NA,
NA, 36L, 17L, 20L, 35L, 35L, 51L, 34L, 32L, 34L, 36L, NA, 20L,
21L, 33L, 16L, 18L, 34L, 32L, 22L, 35L, 18L, 21L, 36L, 37L, 35L,
21L, 34L, NA, 36L, 36L, 36L, 40L, 23L, 12L, 37L, 18L, 37L, 35L,
33L, 36L, 12L, 22L, 34L, 35L, 12L, 37L, 19L, 20L, 21L, 32L, 30L,
19L, 39L, 13L, 35L, 20L, 22L, 35L, 33L, 36L, 36L, 22L, 35L, 21L,
28L, 21L, 34L, 22L, 34L, 37L, 34L, 37L, 20L, 18L, 20L, 36L, NA,
17L, NA, 34L, 36L, 20L, NA, 31L, 33L, 19L, 22L, 16L, 36L, 36L,
32L, 38L, 34L, 33L, 33L, 36L, 22L, 35L, 31L, 36L, 36L, 19L, 34L,
17L, 32L, 36L, 20L, 30L, 33L, 51L, 20L, 35L, 22L, 19L, 32L, 20L,
33L, 21L, NA, 21L, 36L, 53L, 34L, 21L, 34L, 35L, 33L, 20L, 16L,
20L, NA, NA, NA, 20L, 35L, 19L, 32L, 23L, NA, 19L, 20L, 34L,
31L, 20L, 48L, 34L, 34L, 36L, 37L, 36L, 18L, 20L, 15L, 33L, 19L,
19L, 33L, 31L, 17L, 18L, 19L, 35L, NA, 34L, 20L, 35L, 22L, 36L,
29L, 27L, 31L, 37L, 16L, 37L, 35L, 19L, 18L, 35L, 35L, 33L, 35L,
34L, 19L, NA, 35L, 33L, 35L, 35L, 34L, 32L, 28L, 36L, 21L, 34L,
34L, 37L, 34L, 34L, 20L, 31L, 34L, 33L, 35L, 35L, 35L, 33L, 34L,
33L, 17L, 35L, 33L, 36L, 16L, 35L, 21L, 36L, 36L, 21L, 36L, 35L,
34L, 34L, 17L, 32L, 20L, 46L, 33L, 22L, 35L, 35L, NA, 35L, 35L,
36L, 31L, 36L, 21L, 12L, 35L, 35L, 21L, 19L, 35L, 37L, 33L, 20L,
19L, NA, 35L, 47L, 34L, 22L, 34L, NA, 34L, 34L, NA, 35L, 35L,
35L, 36L, 26L, 35L, 35L, 34L, 36L, NA, 36L, NA, 34L, 36L, 33L,
16L, 36L, 35L, 33L, 36L, 35L, 35L, 33L, 35L, 21L, 34L, 20L, NA,
34L, 36L, 36L, 34L, 32L, 34L, 34L, 34L, 34L, 36L, 36L, 19L, 47L,
36L, 19L, 35L, 36L, 35L, 33L, 33L, 37L, 20L, 20L, 16L, 35L, 17L,
36L, 37L, 35L, 25L, 35L, 20L, 36L, 33L, 36L, 37L, 34L, 32L, 36L,
20L, 34L, 20L, 18L, 32L, 36L, 19L, 48L, 18L, 15L, 25L, 35L, 30L,
20L, 36L, 35L, 36L, 35L, 35L, 20L, 35L, 21L, 35L, 46L, 34L, 36L,
37L, 20L, 36L, 37L, 35L, 34L, 36L, 52L, 39L, 34L, 33L, 19L, 35L,
34L, 35L, 35L, 36L, 34L, 36L, NA, 36L, 37L, 35L, 35L, 34L, 18L,
35L, 20L, 35L, 20L, 37L, 33L, 36L, 30L, 20L, 36L, 20L, 35L, 34L,
16L, NA, 34L, 20L, 35L, 20L, 35L, 35L, 34L, 35L, 35L, 32L, 34L,
35L, 21L, 33L, 37L, 36L, 25L, 35L, 16L, 36L, 35L, 15L, 33L, 37L,
34L, 34L, 37L, 37L, 34L, 16L, 19L, 16L, NA, 21L, 34L, 36L, 34L,
35L, 34L, 34L, 35L, 34L, 52L, 34L, 36L, 37L, 34L, 19L, 37L, 37L,
24L, 35L, 36L, 35L, 35L, 19L, 19L, 36L, 35L, 19L, 32L, 37L, 20L,
35L, 19L, 34L, 36L, 33L, 35L, 36L, 36L, 20L, 16L, 20L, 35L, 35L,
16L, 34L, 37L, 36L, 36L, 16L, 36L, 19L, 16L, 35L, 35L, 34L, 34L,
37L, 19L, 19L, 19L, 20L, 20L, 34L, 37L, 36L, 36L, 36L, 37L, 20L,
37L, 36L, 35L, 16L, 35L, 37L, 33L, 36L, 36L, 35L, 35L, 35L, 21L,
20L, 34L, 35L, 21L, 35L, 21L, 35L, 35L, 33L, 36L, 20L, 20L, 33L,
47L, 20L, 33L, 35L, 36L, 33L, 16L, 35L, 37L, 16L, 21L, 35L, 20L,
NA, 37L, 18L, 34L, 36L, 36L, 35L, 34L, 36L, 16L, 36L, 35L, 34L,
33L, 35L, 37L, 35L, NA, 37L, 34L, NA, 20L, 35L, 35L, 36L, 37L,
36L, 35L, 36L, NA, 48L, 37L, 35L, 20L, 35L, 35L, 36L, 36L, 37L,
36L, 20L, 37L, 36L, 35L, 35L, 35L, 15L, 36L, 35L, 47L, 34L, 35L,
16L, 37L, 35L, 35L, 35L, 36L, 35L, 32L, 34L, NA, 35L, 16L, 36L,
19L, 37L, 35L, 36L, 20L, 19L, 21L, 35L, 35L, 16L, 36L, NA, 35L,
34L, 35L, 34L, 32L, 33L, 21L, 36L, 16L, 16L, 37L, 37L, 21L, 36L,
35L, 37L, 36L, 34L, 36L, 36L, 20L, 15L, 33L, NA, 36L, 22L, 15L,
33L, 34L, 37L, 35L, 37L, 36L, 47L, 20L, 34L, 35L, 34L, 35L, 48L,
34L, 48L, 36L, 35L, 37L, 34L, 35L, 35L, 19L, 31L, 35L, 35L, 36L,
17L, 50L, 34L, 36L, 18L, 15L, 35L, 35L, 35L, 34L, 37L, 35L, 20L,
36L, 20L, 36L, 35L, 34L, 35L, 20L, 32L, 33L, 35L, 20L, 17L, 36L,
35L, 19L, 19L, 34L, 16L, 37L, 36L, 34L, 19L, 20L, 36L, 35L, 35L,
36L, 34L, 33L, 36L, 37L, 35L, 18L, 35L, 36L, 20L, 21L, 21L, 36L,
34L, 20L, 20L, 36L, 18L, 36L, 19L, 16L, 34L, 33L, 37L, 20L, 36L,
36L, 35L, 37L, 35L, 34L, 36L, NA, 6L, 20L, 36L, 36L, 19L, 37L,
35L, 19L, 20L, 31L, 36L, NA, 16L, 35L, 32L, 20L, 36L, 31L, 33L,
20L, 48L, 35L, 20L, 19L, 35L, 36L, 32L, 36L, 36L, 19L, 20L, 49L,
35L, 18L, 37L, 36L, 35L, 47L, 47L, 36L, 20L, 36L, 37L, 39L, 36L,
16L, 35L, 37L, 34L, 35L, 21L, 16L, 34L, 36L, 35L, 33L, 33L, 36L,
20L, 35L, 36L, 38L, 37L, 35L, 20L, 16L, 37L, 21L, 36L, 36L, 37L,
47L, 37L, 52L, 37L, 33L, 37L, 19L, 35L, 37L, 36L, 34L, 37L, 35L,
35L, NA, 34L, 35L, NA, 36L, 49L, 37L, 36L, 36L, 34L, 21L, 37L,
35L, 36L, 50L, 34L, 37L, 35L, 33L, 33L, 30L, 36L, 22L, 21L, 37L,
37L, 37L, 38L, 20L, 20L, 37L, 34L, 34L, 20L, 21L, 38L, 21L, 39L,
NA, 37L, 32L, 19L, 35L, 36L, 35L, 48L, 20L, 35L, 37L, 36L, 36L,
37L, 37L, 37L, 20L, 38L, 33L, 36L, 36L, 34L, 36L, 36L, 35L, 19L,
35L, 35L, 22L, 21L, 37L, 36L, 36L, 36L, 35L, 36L, 36L, 34L, 20L,
35L, NA, 20L, 35L, 38L, 17L, NA, 37L, 39L, 35L, 38L, 21L, 17L,
36L, 38L, 48L, 37L, 33L, 38L, 34L, 19L, 38L, 51L, 35L, 21L, 35L,
19L, 37L, 23L, 35L, 36L, 38L, 38L, 36L, 37L, 35L, 17L, 50L, 36L,
36L, 49L, 22L, 20L, 38L, 34L, 45L, 37L, 34L, 36L, 37L, 34L, 33L,
20L, 35L, 37L, 20L, 37L, 33L, 37L, 36L, 37L, 33L, 35L, 49L, 20L,
21L, 19L, 48L, 49L, 37L, 36L, 38L, 37L, 37L, 37L, 19L, 20L, 36L,
34L, 38L, 35L, 38L, 36L, 51L, 22L, 52L, 36L, 37L, 34L, 36L, 50L,
34L, 37L, 37L, 36L, 35L, 33L, 37L, 20L, 33L, 20L, 34L, 34L, 16L,
37L, 35L, 38L, 37L, 36L, 38L, 34L, 37L, 37L, 38L, 36L, 19L, 37L,
38L, 36L, 38L, 36L, 20L, 37L, 35L, 37L, 36L, 34L, 50L, 36L, 37L,
35L, 35L, 37L, 20L, 35L, 37L, 33L, 37L, 36L, 35L, 35L, 20L, 34L,
31L, 37L, 35L, NA, 19L, 18L, 16L, 37L, 32L, 20L, 38L, 18L, 33L,
21L, 37L, 37L, 35L, 35L, 34L, 18L, 36L, 38L, 34L, 31L, 20L, 20L,
38L, 35L, 31L, 36L, 37L, 36L, 24L, 35L, 35L, 21L, 34L, NA, 36L,
20L, 35L, NA, 14L, 37L, 35L, 17L, 49L, 35L, 37L, 50L, NA, 47L,
36L, 33L, 35L, 52L, 22L, 36L, 21L, 37L, 36L, 20L, 16L, 52L, 47L,
20L, 36L, 50L, 35L, 36L, 35L, 18L, 35L, NA, 34L, 19L, 11L, 32L,
17L, 35L, 36L, 35L, 36L, 38L, 35L, 36L, 36L, 33L, 35L, 15L, 37L,
33L, 34L, 37L, 33L, 35L, 35L, 35L, 36L, 35L, 35L, NA, 34L, 37L,
52L, 36L, 37L, 37L, 36L, NA, 48L, 36L, NA, 18L, 37L, 36L, NA,
21L, 36L, 15L, 34L, 50L, 35L, 16L, 36L, 50L, 21L, NA, 22L, 18L,
22L, 34L, 52L, 36L, 52L, 32L, 36L, 35L, 54L, 36L, 52L, 36L, 37L,
17L, 49L, 35L, 35L, 53L, 50L, 36L, 33L, 37L, 35L, 37L, 35L, 29L,
33L, 35L, 19L, 37L, 34L, 20L, 34L, 34L, 21L, 20L, 34L, 35L, 34L,
37L, 20L, 34L, 38L, 16L, 35L, 20L, 36L, 19L, 37L, 33L, 36L, 19L,
36L, 37L, 36L, 33L, 37L, 34L, 20L, 36L, 32L, 16L, 70L, 35L, 35L,
20L, 51L, 38L, 35L, 37L, 49L, 37L, 20L, 32L, 35L, 21L, 37L, 49L,
35L, 37L, NA, NA, 34L, 38L, 32L, 37L, 53L, 36L, 48L, 51L, 30L,
37L, 39L, 33L, NA, 38L, 35L, 37L, 36L, 20L, 32L, 37L, 52L, 54L,
37L, 36L, 35L, 34L, 35L, 52L, 32L, 35L, 32L, 37L, 19L, 37L, 37L,
36L, 36L, 21L, 37L, 39L, 34L, 37L, 17L, 22L, 37L, 38L, 35L, 33L,
22L, 19L, 34L, 32L, 21L, 36L, 35L, 36L, 31L, 35L, 36L, 34L, 38L,
30L, 35L, 35L, 33L, 36L, 22L, 35L, 38L, 31L, 21L, NA, NA, 35L,
32L, 35L, 36L, 35L, 32L, 22L, 33L, 37L, 38L, 38L, 35L, 38L, 38L,
22L, 22L, 32L, 35L, 34L, NA, 35L, 38L, 35L, 54L, 50L, 51L, 49L,
36L, 36L, 37L, 36L, 36L, 33L, 36L, 35L, 36L, 36L, 25L, 37L, 22L,
50L, 35L, 50L, 20L, 35L, 31L, 34L, 35L, 36L, 20L, 36L, 20L, 35L,
35L, 21L, 34L, 36L, 37L, 36L, 21L, 38L, 22L, 20L, 35L, 38L, 31L,
36L, 34L, 37L, 33L, 21L, 35L, 34L, 33L, 22L, 37L, 35L, 37L, 23L,
35L, 32L, 38L, 26L, 38L, NA, 30L, 37L, 36L, 34L, 34L, 35L, 36L,
20L, 21L, 35L, NA, 48L, 16L, 33L, 19L, 38L, NA, 38L, 33L, 34L,
37L, 33L, 34L, 22L, 50L, 19L, 23L, 22L, 19L, 33L, 48L, 36L, 19L,
36L, 36L, 36L, 19L, 36L, 37L, 53L, 33L, 36L, 37L, 36L, 37L, 20L,
38L, 52L, 34L, 37L, 37L, 36L, 38L, 36L, 51L, 12L, 35L, 35L, 22L,
21L, 21L, 37L, 37L, 21L, 22L, NA, 37L, 53L, 37L, 34L, 34L, 20L,
19L, 21L, 37L, 34L, 20L, 21L, 37L, 38L, 32L, 35L, 21L, 34L, 38L,
21L, 37L, 37L, 37L, 20L, 20L, 37L, 21L, 17L, 39L, 19L, 37L, 21L,
35L, 31L, 35L, 33L, 38L, 37L, 37L, 21L, 37L, 22L, 37L, 35L, 21L,
20L, 36L, 17L, 34L, 36L, 35L, 37L, 50L, 32L, 19L, 48L, 35L, 38L,
16L, 36L, 37L, 35L, 36L, 36L, 19L, 33L, 35L, 37L, 37L, 50L, NA,
36L, 37L, 36L, 37L, 19L, 32L, 37L, 37L, 21L, 20L, NA, 37L, 35L,
37L, 49L, 21L, 51L, 37L, 36L, 51L, 31L, 36L, 38L, 19L, 20L, 49L,
39L, 37L, 19L, 52L, 20L, 36L, NA, 19L, 36L, 35L, 49L, NA, 22L,
37L, 38L, 39L, 21L, 21L, 51L, 38L, 33L, 38L, 38L, 35L, 19L, 38L,
20L, 21L, 35L, 20L, 20L, 45L, 38L, 32L, 20L, 20L, 40L, 16L, 36L,
38L, 37L, 38L, 36L, 37L, 20L, 38L, 36L, NA, NA, 16L, 20L, 38L,
39L, 38L, 35L, NA, NA, 35L, 20L, 37L, 37L, 33L, 37L, 38L, 36L,
36L, 38L, 51L, 35L, 35L, 38L, 37L, 35L, 25L, NA, 32L, 35L, 18L,
37L, 38L, 30L, 34L, 21L, 34L, 37L, 38L, 19L, 36L, 21L, 37L, 20L,
NA, 38L, 35L, 20L, 35L, 35L, 35L, 55L, 37L, 19L, 38L, 28L, 49L,
50L, 37L, NA, 35L, 17L, 35L, 50L, 37L, 38L, 38L, 49L, 21L, 36L,
36L, 38L, 34L, 50L, 37L, 18L, 37L, 37L, 19L, 16L, 38L, 38L, 37L,
35L, 16L, 19L, 37L, 35L, 37L, 49L, 36L, 19L, 52L, 37L, 21L, 37L,
17L, 22L, 21L, NA, 20L, 37L, 21L, 19L, 33L, 38L, 36L, 37L, 37L,
19L, 20L, 36L, NA, 35L, 19L, 35L, 37L, 33L, 36L, NA, 20L, 35L,
35L, 16L, 16L, 22L, 37L, 38L, 38L, 36L, 16L, NA, 22L, 20L, 21L,
37L, 38L, 35L, 20L, 34L, 34L, 16L, 37L, 23L, 37L, 21L, 36L, 37L,
35L, 37L, 20L, 36L, 32L, 21L, 16L, 17L, 22L, 33L, 26L, 18L, 36L,
37L, 18L, 20L, 36L, 37L, 20L, 37L, 30L, 37L, 35L, 49L, 35L, 36L,
NA, 35L, 18L, 21L, 37L, 38L, 36L, 20L, 35L, 37L, 15L, 34L, 50L,
38L, 37L, 16L, 36L, 33L, 35L, 17L, 51L, 51L, 35L, 17L, 52L, 36L,
38L, 38L, 39L, 38L, 36L, 37L, 36L, 35L, 36L, 37L, 19L, 36L, 35L,
20L, 37L, 45L, 38L, 21L, 35L, 17L, 22L, 37L, 38L, 18L, 50L, 37L,
35L, 37L, NA, NA, 37L, 32L, 17L, 24L, 36L, 38L, 37L, NA, 36L,
37L, 20L, 38L, 45L, 35L, 15L, 16L, 31L, 37L, 38L, NA, 37L, 15L,
35L, 21L, 51L, 36L, 36L, NA, 21L, 19L, 20L, 38L, 37L, NA, 21L,
37L, 37L, 38L, 35L, NA, 38L, NA, 38L, 37L, 21L, 37L, 20L, 38L,
37L, 33L, NA, 20L, 19L, 39L, 38L, 37L, 15L, 38L, 37L, 38L, 37L,
38L, 37L, 19L, 27L, NA, 51L, 16L, 38L, NA, 36L, 50L, 37L, 35L,
51L, 37L, 36L, 22L, 50L, 36L, 38L, 38L, 39L, 16L, 49L, 30L, 53L,
36L, 36L, 36L, 37L, 37L, 17L, 16L, 19L, NA, 47L, 18L, 19L, 36L,
38L, 20L, 37L, 51L, 36L, 50L, 37L, 52L, 16L, 38L, 37L, 38L, 34L,
36L, 17L, 51L, NA, 37L, 36L, 20L, 20L, 35L, 17L, 34L, NA, 36L,
36L, 19L, 37L, 48L, 36L, 35L, 15L, 16L, 35L, 36L, 38L, 33L, 36L,
19L, NA, 35L, 38L, 21L, 35L, 36L, 36L, 20L, 33L, 34L, 31L, 38L,
36L, 36L, 20L, 49L, 22L, 39L, 37L, 52L, 47L, 32L, 35L, 54L, 22L,
35L, 37L, 37L, NA, NA, 34L, 36L, 21L, 48L, 30L, 20L, 34L, NA,
53L, 49L, 35L, 35L, 37L, 37L, 36L, 21L, 37L, 35L, 39L, 52L, 37L,
NA, NA, 49L, 36L, 36L, 49L, 34L, 49L, 35L, 38L, 38L, 22L, 19L,
36L, 52L, 34L, 35L, 36L, 36L, 34L, 33L, 22L, 36L, 35L, 29L, 37L,
37L, 37L, 20L, 31L, 21L, 35L, 36L, 46L, 17L, 31L, 20L, 36L, 34L,
21L, 20L, 35L, 39L, 39L, 37L, 36L, 18L, 32L, 16L, 21L, 20L, 37L,
20L, 16L, 36L, 21L, 32L, 37L, 38L, 21L, 32L, 34L, NA, NA, 38L,
35L, 38L, 35L, 21L, NA, 20L, 36L, 21L, 21L, 51L, 37L, 16L, 37L,
49L, 52L, 32L, NA, 31L, 35L, 31L, 47L, 31L, 35L, 39L, 37L, 37L,
52L, 36L, NA, 48L, 37L, 37L, 37L, 23L, 20L, 38L, 34L, 49L, 49L,
20L, 49L, 37L, 21L, 52L, 37L, 36L, 36L, NA, 50L, 37L, 33L, 37L,
37L, 17L, 34L, 34L, 34L, 17L, 18L, 36L, 15L, 17L, 35L, 38L, 37L,
37L, 21L, 37L, 32L, 49L, 35L, 35L, 21L, 36L, 20L, 37L, 36L, 36L,
21L, 27L, 19L, 36L, 38L, 37L, 37L, NA, 32L, 21L, 20L, 36L, 21L,
34L, 39L, 37L, 33L, 21L, 37L, 36L, 37L, 37L, 33L, 35L, 37L, 38L,
32L, 22L, 36L, 35L, 22L, 37L, 32L, 36L, 49L, 37L, 37L, 38L, 38L,
17L, 37L, 21L, 37L, 34L, 38L, 19L, NA, 51L, 37L, 37L, 49L, 32L,
50L, 38L, 37L, 20L, 17L, 35L, 37L, 16L, 38L, NA, 37L, 22L, 36L,
20L, NA, 36L, 34L, 38L, 36L, 38L, NA, 21L, 35L, 35L, 34L, 35L,
34L, NA, 15L, 33L, 18L, 47L, 18L, 33L, 20L, 35L, 35L, NA, 34L,
30L, 35L, 35L, 35L, NA, 35L, 36L, 33L, 36L, 15L, 36L, 30L, 34L,
18L, 35L, 20L, 14L, 30L, NA, 35L, 35L, 20L, 21L, 34L, 35L, 36L,
19L, 48L, 19L, 36L, 34L, 36L, 37L, 16L, 36L, 36L, 35L, 33L, 34L,
NA, 35L, 35L, 54L, 35L, 36L, 33L, 18L, 36L, 14L, 15L, 35L, 36L,
30L, 19L, 36L, 37L, 47L, 31L, 33L, 47L, 21L, 17L, 35L, 35L, 47L,
34L, NA, 20L, 34L, 35L, 35L, 16L, 20L, 35L, 35L, 22L, 22L, 35L,
35L, 19L, 35L, 37L, 53L, NA, 36L, NA, 36L, 34L, 36L, NA, 47L,
31L, 33L, 35L, 20L, NA, 34L, 36L, 35L, 36L, 36L, 34L, 37L, 49L,
36L, 35L, 20L, 36L, 34L, 30L, 36L, 34L, NA, NA, 38L, 23L, 36L,
36L, 36L, 54L, 38L, 49L, 23L, 37L, 22L, NA, 34L, 23L, 49L, 48L,
38L, NA, 35L, 35L, 36L, NA, 36L, NA, 35L, 36L, 36L, 34L, 33L,
NA, 37L, 37L, 36L, 36L, NA, 22L, 36L, 37L, 22L, 20L, 34L, 37L,
32L, 15L, 35L, 35L, 35L, 34L, 18L, 36L, 33L, 36L, 20L, 33L, 35L,
21L, 31L, 37L, NA, 34L, 37L, NA, 35L, 34L, 37L, 36L, 32L, 36L,
36L, 21L, 50L, 32L, 36L, 30L, NA, 20L, 22L, 35L, 54L, 37L, 35L,
33L, 52L, 35L, 20L, NA, 35L, NA, 36L, 23L, 32L, 47L, 48L, 35L,
33L, NA, 52L, 37L, 36L, 50L, 37L, 34L, 36L, 32L, 35L, 22L, 33L,
35L, 36L, 35L, 33L, 20L, 19L, 36L, NA, 33L, 35L, 35L, 22L, 28L,
35L, 36L, 34L, NA, 20L, 37L, 35L, 36L, NA, 34L, 36L, 32L, 34L,
35L, 35L, 33L, 36L, 30L, 36L, 19L, 34L, 34L, 37L, 21L, 46L, 53L,
35L, 37L, 35L, 36L, 32L, 37L, 49L, 19L, 54L, 37L, 31L, 20L, 37L,
19L, 37L, 37L, 34L, 50L, 35L, 20L, 36L, 37L, 37L, 37L, 21L, 20L,
32L, 37L, 35L, 33L, 51L, 36L, 37L, 36L, 21L, 34L, 35L, 20L, 34L,
35L, 34L, 19L, 37L, 35L, 34L, 35L, 36L, 19L, 17L, 17L, 19L, 32L,
36L, 20L, 34L, 33L, 36L, 36L, 37L, 36L, 20L, 35L, 37L, 21L, 35L,
37L, 35L, 29L, 36L, 35L, 32L, 36L, 19L, 20L, 36L, 35L, 20L, 36L,
35L, 20L, 35L, 35L, 36L, 48L, 35L, 35L, 19L, 36L, 21L, 35L, 35L,
52L, 50L, 51L, 53L, 37L, 36L, 21L, 20L, NA, 34L, 34L, 36L, 36L,
38L, 37L, 20L, 49L, 36L, 38L, 16L, 19L, 50L, 35L, 33L, 20L, 36L,
34L, 33L, 36L, 17L, 20L, 37L, 48L, 48L, 16L, 37L, 35L, 34L, 32L,
36L, 37L, 21L, 35L, 35L, 36L, 36L, 35L, 20L, 36L, 35L, 34L, 35L,
36L, 35L, 35L, 21L, 35L, NA, 34L, 17L, 22L, 34L, 35L, 35L, 34L,
35L, 31L, 36L, 21L, 35L, 17L, 33L, 36L, 35L, 19L, 36L, 35L, 35L,
34L, 37L, 20L, 33L, 34L, 35L, NA, 20L, 36L, 36L, 36L, 16L, 20L,
37L, 37L, 35L, 20L, 36L, 36L, 16L, 34L, 29L, NA, 18L, 51L, 34L,
35L, 33L, 49L, 48L, 36L, 35L, 54L, 35L, 49L, 34L, 37L, 51L, 37L,
35L, 36L, 37L, 35L, 18L, 34L, 15L, 14L, 34L, 34L, 36L, 49L, 19L,
37L, 35L, 17L, 37L, 16L, 34L, 48L, 36L, 19L, 35L, 19L, 20L, 35L,
19L, 34L, 36L, 15L, 36L, 15L, 35L, NA, 19L, 35L, 20L, 16L, 34L,
15L, 20L, 34L, 36L, 19L, 17L, 19L, 35L, 33L, 35L, 35L, 19L, 17L,
16L, 15L, 15L, 16L, 16L, 34L, 15L, 19L, 33L, 29L, 33L, 35L, 19L,
35L, 32L, 35L, 37L, 34L, 19L, 16L, 31L, 29L, 35L, 22L, 16L, 37L,
15L, 33L, 18L, 33L, 35L, 35L, 33L, 22L, 15L, 32L, NA, 36L, 35L,
16L, 14L, 16L, 32L, 34L, 19L, 20L, 15L, 37L, 35L, 34L, 36L, 18L,
34L, 34L, 19L, 21L, 36L, 36L, 51L, 34L, 20L, 54L, 35L, 21L, 34L,
NA, 17L, 15L, 35L, 15L, 48L, 34L, 20L, 35L, NA, 50L, NA, 36L,
52L, 35L, 34L, NA, NA, 35L, 20L, 35L, 50L, 48L, 47L, 36L, 35L,
21L, 34L, 37L, 35L, 18L, 36L, 35L, 35L, 32L, 36L, 32L, 37L, 33L,
35L, 47L, 20L, 34L, 20L, 39L, 17L, 36L, 19L, 18L, 20L, 19L, 36L,
18L, 35L, 36L, 36L, 36L, 17L, 22L, 36L, 36L, 15L, 12L, 36L, 16L,
16L, 11L, 35L, 17L, 15L, 19L, 16L, 36L, 20L, 15L, 21L, 35L, 11L,
36L, 18L, 34L, 22L, 19L, 36L, 22L, 36L, 33L, 35L, 36L, 35L, 16L,
36L, 36L, 36L, 35L, 37L, 16L, 13L, 36L, 17L, 12L, 35L, 35L, NA,
36L, 32L, 19L, 37L, 34L, 35L, 22L, 36L, 37L, 34L, 34L, 36L, 36L,
37L, 35L, 16L, 35L, 33L, 38L, 15L, 37L, 34L, 37L, 47L, 34L, 35L,
37L, 36L, 16L, 36L, 16L, 50L, 16L, 37L, 16L, 37L, 50L, 52L, 20L,
36L, 22L, 37L, 35L, 19L, 35L, 22L, 46L, 17L, 22L, 37L, 36L, 34L,
36L, 50L, 20L, 36L, 15L, 49L, 36L, 36L, 36L, 15L, NA, 50L, 36L,
17L, 31L, 35L, 36L, 50L, 36L, 21L, 49L, 37L, 16L, 16L, 20L, 22L,
25L, 37L, 35L, 36L, 33L, 22L, 37L, 36L, 17L, 15L, 21L, 17L, 34L,
37L, 37L, 12L, 15L, 21L, 34L, 22L, 34L, 35L, 19L, 33L, NA, 35L,
36L, NA, 36L, 32L, 36L, 35L, 36L, 14L, 36L, 21L, 36L, 34L, 37L,
15L, 37L, 21L, 34L, 45L, 19L, 36L, 37L, 18L, 35L, 36L, 31L, 17L,
34L, NA, 37L, 21L, 12L, 36L, 36L, 33L, 36L, 36L, 18L, 35L, 36L,
15L, 36L, 33L, 15L, 19L, 22L, 51L, 36L, 12L, 34L, 37L, 36L, 36L,
37L, 36L, 34L, 16L, 50L, 15L, 36L, 36L, 45L, 37L, 16L, 37L, 22L,
36L, 32L, 37L, 16L, 34L, 20L, 53L, 33L, 53L, 36L, 50L, 53L, 36L,
NA, 33L, 15L, 36L, 37L, 36L, 35L, 19L, 22L, 36L, 36L, 22L, 49L,
21L, 21L, 35L, 31L, 50L, 49L, 49L, 49L, 18L, 33L, 35L, 21L, 19L,
21L, 36L, 21L, NA, 35L, 21L, 22L, NA, 35L, 37L, 34L, 38L, 21L,
21L, 35L, 21L, 37L, 16L, 19L, 39L, 21L, 36L, 19L, 20L, 33L, 36L,
21L, 21L, 36L, 33L, 34L, 15L, 35L, 22L, 36L, 35L, 19L, 35L, 36L,
20L, 17L, 21L, 36L, 19L, 19L, 21L, 37L, NA, 35L, 35L, 35L, 35L,
36L, 21L, 36L, 36L, 36L, 36L, 37L, 37L, 35L, 35L, NA, 34L, 17L,
38L, 34L, 19L, 35L, 36L, 36L, 51L, 36L, 35L, NA, 32L, 37L, 37L,
19L, 29L, 21L, 18L, 36L, 21L, 30L, 36L, 22L, NA, 20L, 47L, 37L,
53L, 37L, 21L, 52L, 36L, 47L, 34L, 46L, 20L, 36L, 37L, NA, 34L,
35L, 46L, 15L, 52L, 34L, 30L, 50L, 36L, 35L, 35L, 28L, 18L, 51L,
19L, 37L, 51L, 21L, 46L, 24L, 20L, 36L, 51L, 21L, 32L, 21L, 21L,
20L, 35L, 37L, 52L, 37L, 32L, 37L, 21L, 36L, 37L, 36L, 36L, 20L,
19L, 30L, 36L, 20L, 28L, 20L, 36L, 19L, 34L, NA, 31L, 35L, 34L,
19L, 17L, 32L, 35L, 35L, 30L, 18L, 19L, 34L, 14L, 19L, 32L, 36L,
20L, NA, 36L, 37L, 19L, 36L, 22L, 15L, 21L, 52L, 18L, NA, 19L,
19L, 35L, 34L, 20L, 36L, 15L, 20L, 18L, 21L, 37L, 34L, 49L, 34L,
35L, 36L, 32L, 37L, 35L, 20L, 20L, 49L, 35L, 36L, 16L, 35L, 35L,
47L, 36L, 21L, NA, 31L, 20L, 34L, 37L, 19L, 36L, NA, 36L, 52L,
31L, 50L, 19L, 35L, NA, NA, 38L, 21L, 20L, 35L, NA, 14L, 37L,
NA, 15L, NA, 17L, 36L, 35L, 20L, 15L, 21L, 31L, NA, 24L, 36L,
36L, 33L, 35L, 36L, 35L, 34L, 20L, NA, 20L, 34L, 36L, NA, 38L,
20L, 19L, 15L, 19L, 37L, 21L, 38L, 34L, 35L, 16L, 36L, NA, 51L,
32L, 51L, 31L, NA, NA, 30L, NA, 20L, 48L, 20L, NA, 35L, 38L,
15L, 36L, 35L, NA, 19L, 21L, 35L, 35L, 16L, 21L, 18L, 35L, 37L,
35L, 14L, 20L, 33L, 21L, 38L, 35L, 21L, NA, 35L, 36L, 21L, 20L,
NA, 36L, 21L, 17L, 36L, 37L, 20L, 37L, 38L, 16L, 36L, 50L, 17L,
30L, NA, 20L, 30L, 14L, 19L, 23L, 37L, 30L, 14L, 37L, 32L, 20L,
35L, NA, 37L, 20L, 35L, NA, 36L, 35L, 33L, 19L, 35L, 33L, 36L,
20L, 34L, 17L, 38L, 20L, 33L, NA, 51L, 36L, 21L, 21L, 18L, 37L,
23L, 37L, 20L, 34L, 20L, 32L, 18L, NA, NA, 33L, 56L, 23L, NA,
36L, 20L, 15L, 35L, 36L, 52L, 38L, 37L, 16L, 51L, 17L, 17L, 53L,
17L, 32L, 16L, 44L, 35L, 35L, 22L, 22L, 30L, 37L, 16L, 37L, NA,
NA, 22L, 47L, 35L, 35L, 36L, 36L, 35L, 21L, 34L, 52L, 36L, 35L,
36L, 20L, 46L, 35L, 38L, 36L, 21L, NA, 38L, 37L, 33L, 22L, 15L,
36L, 17L, 17L, 32L, 36L, 35L, 39L, 37L, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, 22L, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, 14L, 34L, 20L, 37L, 22L, NA, NA, 37L,
NA, 22L, 37L, 36L, 37L, 37L, 22L, 35L, 20L, 34L, 21L, 14L, 22L,
33L, 22L, 36L, 35L, 35L, 14L, 19L, 20L, 36L, 35L, 35L, 36L, 16L,
17L, 48L, 37L, 20L, 20L, 36L, 36L, 29L, 20L, 32L, 20L, 37L, 19L,
21L, 14L, 34L, 37L, 35L, 36L, 32L, 37L, 19L, 37L, 37L, 22L, 36L,
35L, 36L, 21L, 30L, NA, 37L, 52L, 32L, 16L, NA, 20L, 20L, 35L,
37L, NA, 37L, 21L, 36L, 31L, 20L, 22L, 20L, 35L, NA, 19L, 15L,
20L, 48L, 21L, 37L, 36L, 35L, 36L, 37L, NA, 20L, 47L, 36L, 21L,
36L, 27L, 20L, 33L, 36L, 32L, 36L, 46L, 16L, 32L, 35L, 20L, 36L,
21L, 37L, 24L, 20L, 36L, 14L, 21L, 20L, 35L, 37L, 16L, 20L, 21L,
36L, 36L, 16L, 37L, 20L, 38L, 37L, 32L, 51L, 35L, 20L, NA, 20L,
14L, NA, 47L, 32L, NA, 22L, 34L, 22L, 17L, 20L, 36L, 36L, 29L,
37L, 35L, 35L, NA, 34L, NA, 37L, 16L, 20L, 37L, 20L, 20L, 36L,
NA, 37L, 34L, 22L, 36L, 38L, 37L, 36L, 36L, 21L, NA, 36L, 33L,
NA, 37L, 37L, 36L, 34L, 37L, 21L, 21L, 36L, 21L, 35L, 21L, 33L,
51L, 21L, 38L, 22L, 20L, 32L, 21L, 20L, 35L, 20L, 37L, 36L, 36L,
36L, 37L, NA, 38L, 20L, 34L, 37L, 21L, 21L, 37L, 21L, 21L, 36L,
34L, 20L, 36L, 22L, 36L, 20L, 16L, 49L, 23L, 20L, 21L, 33L, 35L,
21L, 38L, 21L, 32L, 37L, 35L, 50L, 51L, 33L, 35L, 20L, 49L, NA,
20L, NA, 37L, 21L, NA, NA, 35L, 21L, 21L, 29L, 22L, 32L, 36L,
38L, 47L, 37L, 36L, 38L, 36L, 21L, 33L, 21L, 20L, 51L, 32L, 39L,
20L, 20L, 33L, 35L, 21L, NA, 20L, 23L, 33L, 37L, 37L, 21L, 37L,
36L, 37L, 20L, 20L, 23L, 36L, 37L, 21L, 21L, 20L, 31L, 21L, 33L,
25L, 20L, 31L, 22L, 20L, 20L, 34L, 21L, 36L, 37L, 20L, 37L, 22L,
19L, 33L, 22L, 36L, 36L, 36L, 36L, 36L, 35L, 18L, 16L, 21L, 21L,
37L, 33L, 37L, 15L, 18L, 18L, 36L, 22L, 37L, 36L, 18L, 16L, 35L,
22L, 32L, 36L, 37L, NA, 37L, 19L, 16L, 18L, 36L, 22L, 19L, 19L,
21L, 36L, 30L, 17L, 22L, 18L, 37L, 33L, 33L, 19L, 37L, 30L, 21L,
38L, 19L, 21L, 35L, NA, 21L, 33L, 32L, 20L, 34L, 21L, 19L, NA,
38L, 34L, 24L, 20L, 37L, 37L, 16L, 21L, 22L, 19L, 35L, 38L, 19L,
50L, 20L, 37L, 36L, 54L, 22L, 21L, 19L, 37L, 37L, 49L, 37L, 36L,
53L, 52L, 30L, 48L, 18L, 33L, 21L, 33L, 37L, 36L, 20L, 37L, 20L,
36L, 34L, 22L, 37L, 21L, 37L, NA, 22L, 36L, 34L, 20L, 34L, 36L,
16L, 21L, 30L, 36L, 21L, 35L, 36L, 16L, 21L, 36L, 35L, 32L, 18L,
17L, 16L, NA, 36L, 37L, 20L, 16L, 35L, 35L, NA, 37L, NA, 20L,
18L, 21L, 37L, 19L, 31L, 21L, 15L, 18L, 35L, 37L, 21L, 21L, 36L,
33L, 36L, 34L, 16L, 37L, 20L, 16L, 21L, 36L, NA, 17L, 36L, 20L,
21L, 37L, 16L, 22L, 37L, 20L, 33L, 33L, 52L, 18L, 21L, 36L, 36L,
18L, 36L, 20L, 37L, 16L, 35L, 34L, 20L, 21L, 20L, 21L, 37L, 16L,
20L, 15L, 17L, 17L, 16L, 20L, 20L, 15L, 16L, 20L, 32L, 37L, NA,
36L, 36L, 21L, 20L, 32L, 18L, 36L, 16L, 34L, 37L, 16L, 34L, 35L,
34L, 22L, 17L, 13L, 19L, 36L, 37L, 22L, 20L, 22L, 35L, 20L, 34L,
16L, 37L, 21L, 37L, 21L, 17L, 36L, NA, 37L, 21L, 22L, 35L, 17L,
52L, 37L, 21L, 20L, 36L, 36L, 35L, 33L, 20L, 35L, 36L, 16L, 17L,
17L, 36L, 20L, 37L, 21L, 20L, NA, 22L, NA, 22L, 37L, 20L, 35L,
37L, 19L, 36L, 20L, 35L, 32L, 16L, 33L, 20L, 17L, 35L, 22L, 37L,
36L, 16L, 53L, 37L, 36L, 17L, 17L, 37L, 17L, 36L, 16L, 21L, 35L,
36L, 20L, 20L, 21L, 37L, 17L, 35L, 36L, 36L, 21L, NA, NA, 36L,
21L, 37L, 20L, 50L, 20L, 37L, 37L, 36L, 35L, 38L, 17L, 37L, 35L,
16L, 15L, 37L, 21L, 20L, 27L, 34L, 22L, 16L, 33L, 16L, 17L, 17L,
33L, NA, 35L, 16L, 16L, 33L, 37L, 15L, 15L, 17L, 33L, 22L, 17L,
37L, 35L, 35L, NA, 37L, 37L, 17L, 16L, 15L, 37L, 36L, 17L, 36L,
51L, NA, 16L, 17L, 17L, 36L, 36L, 22L, 16L, 16L, 18L, 37L, NA,
33L, 33L, 22L, 22L, 36L, 37L, 16L, 21L, 21L, 20L, 15L, 16L, 21L,
36L, 22L, 33L, 35L, NA, 20L, 17L, 36L, 34L, 37L, 19L, 17L, 16L,
34L, NA, 17L, 22L, 37L, 34L, 37L, 22L, 34L, 37L, 55L, 37L, 27L,
33L, 21L, 17L, 36L, 32L, 37L, 17L, NA, 35L, 36L, 17L, 36L, 34L,
33L, 37L, 16L, 34L, 51L, 37L, 54L, 21L, 16L, 21L, 19L, 21L, 21L,
38L, 17L, 17L, 11L, 37L, 37L, 37L, 37L, 35L, 36L, 34L, 36L, 15L,
36L, 17L, 21L, 21L, 36L, 21L, 37L, 36L, 35L, 37L, 53L, 22L, 23L,
16L, 21L, 33L, 35L, 36L, 19L, 35L, 36L, 16L, 16L, 15L, 17L, 17L,
36L, 21L, 37L, 20L, NA, 37L, NA, 21L, 16L, 20L, 16L, NA, 16L,
21L, 36L, 37L, 16L, 37L, 16L, 16L, 36L, 20L, 17L, 20L, 16L, 36L,
21L, 16L, 22L, 21L, 37L, NA, 21L, 36L, 37L, 36L, 36L, 36L, 16L,
33L, 33L, 16L, 36L, 36L, 52L, 37L, 17L, 37L, 16L, 36L, 16L, 21L,
21L, NA, 20L, 16L, 21L, 16L, 36L, 36L, 21L, 16L, 36L, 21L, 20L,
20L, 37L, 16L, NA, 21L, 21L, 30L, 36L, 36L, 37L, NA, 16L, 20L,
36L, 16L, 36L, 54L, 34L, 36L, 16L, 33L, 37L, 37L, 21L, 20L, 16L,
36L, 36L, 21L, 37L, 36L, 21L, 21L, 55L, 37L, NA, 16L, 21L, 55L,
21L, 21L, 37L, NA, 36L, 34L, 36L, 16L, 16L, 21L, 16L, 37L, 16L,
37L, 16L, 36L, 16L, 21L, 16L, 16L, 37L, 37L, 36L, 37L, NA, 21L,
37L, 37L, 16L, 21L, 37L, 34L, 16L, 37L, 21L, 37L, 20L, 36L, 36L,
36L, 36L, 21L, 16L, 35L, 16L, 35L, 37L, 36L, 21L, 35L, 16L, NA,
36L, 36L, 21L, 37L, 37L, 37L, 17L, 36L, 37L, NA, 19L, 36L, 37L,
17L, 20L, 17L, 17L, 36L, 34L, 27L, 37L, 16L, 17L, 38L, 20L, 15L,
39L, 17L, 36L, NA, 36L, 19L, 36L, 20L, 36L, 17L, 35L, 19L, 51L,
20L, 36L, 37L, 21L, 16L, 37L, 32L, 20L, 34L, 22L, 37L, 36L, 37L,
37L, 37L, 37L, 37L, 18L, 18L, NA, 36L, 20L, 20L, 17L, 36L, 19L,
36L, 20L, 36L, 16L, 21L, 32L, 21L, 38L, 17L, 22L, NA, 37L, 21L,
21L, 37L, 36L, 20L, 36L, 37L, 17L, 37L, 22L, 53L, 36L, NA, 32L,
37L, 21L, 20L, 20L, NA, 37L, 17L, 53L, 16L, 17L, NA, 17L, 20L,
17L, 37L, 20L, NA, 37L, 36L, 17L, 21L, 21L, 21L, 36L, 36L, 37L,
16L, 32L, 16L, 18L, 33L, 16L, 21L, 21L, 21L, 17L, 38L, 20L, 36L,
37L, 21L, 32L, 37L, 35L, 21L, 37L, 38L, 36L, 38L, 21L, 36L, 36L,
18L, 15L, 17L, 21L, 36L, 15L, 20L, 21L, 21L, 21L, 20L, 34L, 37L,
20L, 16L, 33L, 16L, 20L, 53L, 50L, 16L, 17L, 17L, 20L, 36L, 37L,
17L, 20L, 16L, NA, NA, 37L, 20L, 27L, 17L, 20L, 20L, 21L, 54L,
16L, 53L, 16L, NA, 17L, 30L, 20L, 37L, 22L, 21L, 35L, 16L, 37L,
37L, 36L, 37L, 35L, 36L, 37L, 33L, 36L, 36L, 20L, NA, 20L, 34L,
37L, 30L, 36L, 37L, 51L, 21L, 36L, 22L, 20L, 52L, 37L, 20L, 37L,
21L, 32L, NA, 28L, 36L, 37L, 36L, 36L, 18L, 21L, 20L, NA, 21L,
22L, 37L, 36L, 12L, 38L, 37L, 18L, 36L, 21L, 22L, 37L, 33L, 37L,
37L, 17L, 21L, 17L, 37L, 23L, 20L, 21L, 19L, 31L, 36L, 37L, 25L,
36L, NA, 36L, 36L, 51L, 37L, 35L, 36L, 50L, 19L, 36L, 53L, 36L,
22L, 20L, 49L, 37L, 20L, 26L, 37L, 21L, 33L, 34L, 21L, 37L, 23L,
27L, NA, 24L, 37L, 37L, 33L, 35L, 31L, 34L, 32L, 20L, 33L, 35L,
NA, 36L, 37L, 39L, 53L, 22L, 37L, 17L, 53L, 35L, 24L, NA, 36L,
36L, 36L, 22L, 37L, 37L, 21L, 20L, 20L, 20L, 16L, 33L, 37L, 21L,
53L, NA, NA, 37L, 36L, 34L, 21L, 37L, 37L, 35L, 21L, 21L, 32L,
36L, 21L, 37L, 33L, 21L, 22L, 37L, 35L, 20L, 34L, 19L, 32L, 21L,
37L, 20L, 21L, 50L, 37L, 36L, 36L, 21L, 21L, 37L, 37L, 21L, 53L,
18L, 33L, 16L, 21L, 16L, 37L, 21L, 20L, 20L, 50L, 37L, 20L, 36L,
40L, 23L, 20L, 20L, 37L, 27L, 22L, 21L, 40L, 38L, 20L, NA, NA,
20L, 39L, 34L, 21L, 21L, 37L, NA, 54L, 22L, 20L, 38L, 23L, 52L,
35L, 22L, 20L, 22L, 20L, 37L, 17L, 37L, 38L, 37L, 36L, 19L, 20L,
30L, 37L, 21L, 36L, 20L, 34L, 37L, 17L, 22L, 20L, 20L, 37L, 20L,
21L, 31L, 38L, 35L, 37L, 37L, 37L, 31L, 20L, 39L, 51L, 37L, 37L,
34L, 37L, 21L, 36L, 24L, 36L, 38L, 22L, 17L, 33L, 21L, 36L, 34L,
33L, 35L, 17L, 35L, 33L, 35L, 19L, 18L, 21L, 20L, 35L, 37L, 33L,
28L, 21L, 21L, 34L, 21L, 22L, 49L, 18L, 19L, 37L, 19L, 19L, 20L,
37L, 18L, 37L, 23L, 22L, 27L, 16L, 37L, 37L, 20L, 37L, 33L, 18L,
36L, 21L, 34L, 35L, 32L, 37L, 39L, 54L, 38L, 37L, 37L, NA, 36L,
32L, 33L, 36L, 24L, 24L, 33L, 23L, 35L, 33L, 21L, 35L, 36L, 21L,
35L, 22L, 33L, 52L, 53L, 36L, 24L, 21L, 37L, 37L, 21L, 22L, 37L,
37L, NA, 37L, 37L, 21L, 16L, 34L, 21L, 21L, 37L, 35L, 20L, 37L,
21L, 21L, 18L, 35L, 20L, 37L, 18L, 33L, 22L, 38L, 22L, 20L, 37L,
33L, NA, 52L, 32L, 21L, 21L, 36L, 20L, NA, 22L, 21L, 37L, 16L,
40L, 19L, 20L, 20L, 21L, 17L, 20L, 20L, 37L, 20L, 27L, 36L, 21L,
22L, 22L, 35L, 33L, 34L, 32L, 36L, 38L, 28L, 36L, 30L, 32L, 31L,
NA, 36L, 30L, 24L, 20L, 39L, 54L, 54L, 36L, 22L, 19L, 38L, 21L,
37L, 21L, 21L, 22L, 21L, 21L, 22L, 37L, 22L, NA, 21L, 36L, 35L,
37L, 54L, 35L, 36L, 37L, 37L, 22L, 24L, 35L, NA, 21L, 22L, 36L,
37L, 38L, 18L, 36L, 25L, 22L, 36L, 21L, 25L, 36L, 35L, 21L, 22L,
34L, NA, 37L, 21L, 21L, 21L, 17L, 37L, 22L, 21L, 50L, 37L, 34L,
37L, 23L, 36L, 34L, 21L, 37L, 21L, 34L, 33L, 28L, 37L, 19L, 36L,
22L, 37L, NA, 20L, NA, 36L, 20L, 34L, NA, 21L, 38L, 22L, 37L,
37L, 21L, 22L, 37L, 37L, 37L, 53L, 24L, 20L, 37L, 21L, 22L, 21L,
22L, 22L, 21L, 37L, 32L, 36L, NA, NA, 37L, 17L, 21L, 37L, 32L,
21L, 37L, NA, 36L, 37L, 21L, 36L, 21L, 21L, 19L, 21L, 20L, 34L,
20L, 37L, NA, 17L, 32L, 20L, 26L, 35L, 36L, NA, 27L, 20L, 22L,
37L, 51L, 37L, 34L, 31L, 37L, 22L, 36L, 17L, 21L, NA, 36L, 23L,
18L, 22L, 21L, 18L, 19L, 37L, 20L, 20L, 21L, 36L, 20L, NA, 34L,
NA, 22L, NA, 35L, 37L, 39L, 21L, 37L, 35L, 37L, 36L, 17L, 36L,
NA, NA, 37L, 35L, 54L, 34L, 33L, 37L, 36L, NA, 37L, 19L, 21L,
37L, 35L, 36L, 20L, 21L, 36L, 50L, 21L, 39L, 20L, 37L, 34L, 19L,
19L, 21L, 34L, 36L, 34L, 21L, 19L, 48L, 33L, 21L, 20L, 20L, 21L,
17L, 21L, 26L, 33L, 32L, 20L, 26L, 20L, 35L, 19L, 21L, 21L, 20L,
21L, 17L, 17L, 21L, NA, 37L, 29L, 17L, NA, 17L, 21L, 21L, 16L,
17L, 51L, 20L, 36L, 31L, 20L, 16L, 37L, 36L, 20L, 20L, 16L, 20L,
20L, 35L, 20L, 21L, 29L, 19L, 21L, 53L, 20L, 16L, 48L, 21L, 27L,
34L, 32L, 27L, 34L, 21L, 37L, 19L, 17L, 37L, 21L, 36L, 35L, 21L,
21L, 36L, 36L, 21L, 17L, 16L, 36L, 20L, 21L, 34L, 20L, 16L, 36L,
17L, 16L, 22L, 36L, 17L, 36L, 16L, 36L, 37L, 26L, 51L, 16L, 35L,
19L, 21L, 33L, 36L, 21L, 21L, 19L, 21L, 35L, 21L, 20L, 21L, 37L,
18L, 16L, 35L, 19L, 35L, 20L, 36L, 36L, 21L, 32L, 20L, 37L, 36L,
35L, 20L, 20L, 18L, 51L, 21L, 36L, 21L, 33L, 20L, 21L, 36L, 19L,
17L, 37L, 37L, 21L, 30L, 17L, 20L, 20L, 37L, 15L, 17L, 17L, 21L,
36L, 17L, 37L, 33L, 21L, 21L, 17L, 36L, 36L, 16L, 21L, 16L, 53L,
21L, 36L, 20L, 17L, NA, 17L, NA, 17L, NA, 17L, 20L, 16L, 17L,
37L, 17L, 35L, 17L, 17L, 34L, 17L, 37L, 46L, 17L, 36L, 34L, 17L,
37L, 16L, NA, 36L, 21L, 16L, 34L, 16L, 21L, 35L, 17L, 36L, 20L,
20L, 20L, 16L, 31L, 35L, 35L, 17L, 16L, 33L, 17L, 38L, 17L, 53L,
16L, NA, 19L, 36L, 36L, 34L, 20L, 15L, 37L, 17L, 17L, 36L, 29L,
21L, 17L, 35L, 21L, 20L, 33L, 21L, 21L, 52L, 34L, 36L, 37L, 17L,
36L, 21L, 17L, 36L, 31L, 21L, 36L, 21L, 16L, 17L, 20L, 16L, 36L,
16L, 21L, 15L, 37L, 16L, 37L, 34L, 21L, 21L, 16L, 17L, 17L, 35L,
35L, 19L, 36L, 21L, 21L, 17L, 37L, 34L, 21L, 20L, 35L, 17L, 16L,
29L, 17L, 21L, 17L, NA, 17L, 17L, 17L, 37L, 21L, 20L, 17L, 21L,
NA, 16L, 17L, 20L, 18L, 36L, 17L, 36L, 19L, 22L, 17L, 22L, 36L,
37L, 20L, 37L, NA, 17L, 18L, 34L, 36L, 21L, 16L, 17L, 35L, 21L,
36L, 17L, 16L, 31L, 32L, 18L, 30L, 29L, 35L, 21L, 35L, 19L, 36L,
21L, 16L, 16L, 17L, 37L, 21L, 21L, 21L, 17L, 17L, 32L, 19L, 39L,
17L, 22L, 37L, 33L, 21L, 21L, 18L, 16L, 16L, 31L, 17L, 17L, 16L,
17L, 37L, 36L, 54L, 20L, 16L, 21L, 16L, 37L, 37L, 16L, 31L, 21L,
22L, 37L, 16L, 16L, 35L, NA, 51L, 35L, 17L, 21L, 22L, 16L, 17L,
37L, 37L, 21L, 37L, 17L, 37L, 20L, 17L, 16L, 37L, 16L, 22L, 20L,
37L, 36L, 37L, 21L, 22L, 37L, 35L, 21L, 15L, 17L, 35L, 20L, 18L,
15L, 16L, 19L, 36L, 20L, 20L, 37L, 16L, 37L, 21L, 21L, 18L, 36L,
21L, 37L, 17L, 16L, NA, 37L, 35L, 18L, 37L, 37L, 17L, 37L, 20L,
36L, 20L, 17L, NA, 37L, 21L, 20L, 18L, 22L, 22L, 17L, 20L, 21L,
17L, 18L, 30L, 33L, 17L, 16L, 17L, 31L, NA, NA, NA, NA, 16L,
21L, 17L, 36L, 19L, 18L, 17L, 17L, 36L, 37L, 21L, 21L, 36L, 15L,
37L, 20L, 21L, 18L, 39L, 21L, 49L, 22L, 19L, 37L, 36L, 19L, 17L,
17L, 20L, 21L, 36L, 37L, 17L, 22L, 21L, 18L, 21L, 36L, 52L, 36L,
37L, 38L, 37L, 20L, 22L, 17L, 17L, 17L, 18L, 20L, 17L, 17L, 22L,
17L, 37L, 29L, 36L, 28L, 40L, 16L, 17L, 37L, 17L, 20L, 19L, 36L,
36L, 21L, 19L, 36L, 18L, 19L, 17L, 17L, 17L, 18L, 21L, NA, 33L,
21L, NA, 19L, 34L, 53L, 17L, 17L, 17L, 19L, 18L, 36L, 36L, 18L,
21L, 36L, 17L, 21L, NA, 40L, 36L, 37L, 17L, 19L, 21L, 17L, 17L,
21L, 21L, 21L, 37L, 19L, 17L, 37L, NA, 20L, 22L, 17L, 20L, 18L,
36L, 17L, 36L, 28L, 17L, 36L, 21L, 16L, 21L, 32L, 35L, 37L, 17L,
21L, 36L, 31L, 21L, 37L, 21L, 21L, 22L, 18L, 20L, 16L, 37L, 18L,
NA, 36L, 37L, 37L, 22L, 21L, 22L, 21L, 16L, 18L, 19L, 22L, 35L,
21L, 21L, 16L, 21L, 18L, 37L, 37L, 36L, 37L, 16L, 33L, 21L, 21L,
17L, 21L, 33L, 17L, 34L, 20L, 18L, 17L, 17L, 21L, 21L, 17L, 17L,
17L, 21L, 17L, 16L, 36L, 52L, 18L, 21L, 15L, 22L, 21L, 21L, 20L,
20L, 31L, 52L, 17L, 36L, 17L, 17L, 21L, 17L, 21L, 17L, 52L, 21L,
21L, 17L, 17L, 17L, 21L, 37L, 37L, 17L, 28L, 21L, 17L, 17L, 22L,
36L, 17L, 21L, 17L, 17L, 17L, 21L, 17L, 17L, 21L, 20L, 17L, 17L,
31L, 17L, 21L, 17L, 21L, 37L, 22L, 36L, 17L, 17L, 17L, 17L, 31L,
17L, 32L, 22L, 36L, 24L, 21L, 21L, 17L, 36L, 37L, 21L, 31L, 20L,
17L, 21L, 18L, 22L, 21L, 33L, 22L, 17L, 17L, NA, 17L, 37L, 31L,
36L, 37L, 31L, 37L, 38L, 21L, 17L, 17L, 53L, 36L, 17L, 17L, 17L,
21L, 33L, 37L, 17L, 37L, 17L, 17L, 21L, 17L, 36L, 52L, 21L, 21L,
37L, 17L, NA, 37L, 37L, 37L, 16L, NA, 36L, 17L, 17L, 17L, 17L,
36L, 21L, 37L, 37L, 17L, 17L, 31L, 21L, 16L, 37L, 37L, 31L, 22L,
22L, 22L, 37L, 20L, 33L, 32L, 29L, 36L, 21L, 16L, 52L, 17L, 21L,
21L, 18L, 32L, 36L, 34L, 18L, 38L, 17L, 21L, 37L, NA, 17L, 23L,
38L, 25L, 37L, 53L, 17L, 36L, 37L, 17L, 17L, 16L, 36L, 20L, 37L,
NA, 17L, 21L, 16L, 36L, 22L, 37L, 17L, 19L, 23L, 37L, 17L, 17L,
17L, 37L, 23L, 20L, 21L, 17L, 21L, 35L, 17L, 22L, 17L, 21L, 35L,
16L, 18L, 16L, 20L, 29L, 33L, 36L, 37L, 22L, 16L, 17L, 20L, 17L,
17L, 32L, 20L, 31L, 38L, 15L, 16L, 16L, 17L, 21L, 16L, 17L, 21L,
16L, 16L, 16L, 31L, 16L, 16L, 17L, 17L, 53L, 36L, 27L, 17L, 37L,
37L, 38L, NA, 16L, 21L, 17L, 17L, 16L, 22L, 17L, 17L, 17L, 14L,
37L, 20L, 21L, 16L, 38L, 22L, 50L, 21L, 22L, 36L, 17L, 17L, 21L,
NA, 37L, 16L, 35L, 22L, 17L, 17L, 33L, 22L, 36L, 21L, 34L, 20L,
32L, 32L, 21L, 37L, 18L, 37L, 38L, 22L, 54L, 20L, 17L, 37L, 22L,
50L, 21L, 17L, 37L, 36L, 27L, 19L, 17L, 22L, 19L, 22L, 22L, NA,
37L, 36L, 17L, 22L, 37L, 33L, 21L, 21L, 37L, 37L, 22L, 17L, 30L,
16L, 37L, 22L, 17L, 17L, 33L, 22L, 17L, 27L, 37L, 36L, 21L, 38L,
21L, 33L, 22L, 24L, 29L, 23L, 17L, 22L, 36L, 31L, 36L, 21L, 18L,
35L, 17L, 54L, 37L, 36L, 37L, 33L, NA, 36L, 22L, 17L, 17L, 21L,
17L, 21L, 22L, 16L, 36L, 22L, 17L, 37L, 37L, 21L, 37L, 37L, 17L,
17L, 17L, 37L, 21L, 37L, 37L, 39L, 37L, 30L, 17L, 17L, 37L, 17L,
36L, 15L, 20L, 29L, 18L, NA, 33L, 20L, NA, 36L, 18L, 17L, 17L,
20L, 22L, 16L, 29L, 21L, 33L, 17L, 38L, 16L, 15L, 31L, 17L, 36L,
17L, 32L, NA, 20L, 37L, 17L, 34L, 16L, 21L, NA, 54L, 16L, 17L,
35L, 16L, 35L, 36L, 16L, 15L, 20L, 27L, 20L, 22L, 16L, 37L, 16L,
17L, 21L, 20L, 20L, 20L, 20L, 34L, 28L, 47L, 16L, 16L, 37L, 17L,
32L, 16L, NA, 36L, 37L, NA, 33L, 15L, 21L, 29L, 36L, 31L, 53L,
17L, NA, 37L, 21L, NA, 21L, 20L, 18L, 17L, 17L, 36L, 36L, 22L,
NA, 16L, 37L, 17L, NA, 17L, 36L, 36L, 33L, 37L, 36L, 19L, 37L,
17L, 24L, 17L, 21L, 50L, 19L, 39L, 36L, 20L, 36L, 22L, 37L, 36L,
17L, 21L, 20L, 36L, 17L, NA, NA, NA, NA, 19L, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 37L, 21L, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 37L,
NA, NA, NA, NA, NA, NA, NA, NA, NA, 18L, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 18L, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, 21L, 21L, 21L, 22L, 20L, 37L, NA,
19L, 23L, NA, 32L, 18L, 34L, 16L, 36L, 33L, 49L, 17L, 37L, 35L,
17L, NA, 36L, 38L, 39L, 32L, 21L, 37L, 23L, 19L, 21L, 20L, 25L,
22L, 16L, 21L, 34L, 18L, 35L, 36L, 16L, 20L, 36L, 33L, 20L, 17L,
37L, NA, 36L, 21L, 36L, 37L, 37L, 16L, 35L, 37L, 17L, 37L, 37L,
36L, NA, 17L, 23L, 36L, 37L, 21L, 17L, 22L, 38L, 37L, 37L, 22L,
34L, 36L, 24L, 38L, 36L, 21L, NA, 11L, 39L, 33L, 34L, 36L, 17L,
18L, 36L, 37L, 36L, 34L, NA, 22L, 22L, 22L, 36L, 24L, 16L, 34L,
21L, 16L, 31L, 24L, 22L, 35L, 21L, 37L, 40L, 20L, 21L, 35L, 22L,
22L, NA, 21L, 36L, 52L, 37L, 37L, 22L, 19L, 33L, 22L, 35L, 20L,
22L, 29L, 35L, 36L, 19L, 37L, 36L, 37L, 21L, 34L, 38L, 21L, 37L,
37L, 23L, 36L, 39L, 38L, 32L, 38L, 22L, 33L, 19L, 36L, 33L, 21L,
37L, 36L, NA, 22L, 37L, 20L, 37L, 36L, 37L, 33L, 37L, 35L, 21L,
36L, 36L, NA, 37L, 21L, 21L, 37L, 21L, 20L, 21L, 37L, 37L, 20L,
37L, 21L, 21L, 37L, 34L, 22L, 32L, 21L, 48L, 26L, 36L, 37L, 18L,
21L, 36L, 36L, 16L, 22L, 32L, 16L, 16L, 37L, NA, 37L, 29L, 37L,
37L, 18L, 37L, 21L, 21L, 37L, 23L, 36L, 21L, 16L, 36L, 31L, 22L,
22L, 37L, 20L, 21L, 16L, 36L, 21L, 21L, 36L, 37L, 20L, 21L, 22L,
15L, 15L, NA, 37L, 16L, 15L, 36L, 36L, 20L, NA, 21L, 21L, 37L,
17L, 37L, 37L, 37L, 54L, 32L, 36L, 15L, 37L, 36L, 21L, 37L, 21L,
21L, 16L, 23L, 17L, 15L, 15L, 37L, 17L, 20L, 13L, 12L, 21L, 15L,
20L, 15L, NA, 21L, 32L, 17L, 17L, 17L, 22L, 37L, 23L, 17L, 22L,
17L, 37L, 34L, 21L, 18L, 21L, 16L, 36L, 20L, 33L, 17L, 21L, 26L,
14L, 37L, 16L, 15L, NA, 50L, 15L, 37L, 17L, 16L, 22L, 16L, NA,
21L, NA, 35L, 17L, 21L, 38L, 22L, 37L, 35L, 18L, 21L, 17L, 36L,
22L, 22L, 23L, 27L, 37L, 36L, 17L, 36L, 36L, 16L, 36L, 36L, 17L,
27L, 21L, 38L, 20L, 35L, 17L, 20L, 21L, 20L, NA, 22L, 37L, 20L,
22L, 36L, 17L, 16L, 37L, 19L, NA, 35L, 22L, 16L, 22L, 38L, 37L,
22L, 37L, 35L, 27L, 21L, 17L, 38L, 51L, 22L, 17L, 17L, 20L, 20L,
21L, 38L, 15L, 38L, 36L, 36L, 37L, 17L, 35L, 20L, 16L, 22L, 21L,
37L, 37L, 29L, 37L, 20L, 37L, 17L, 22L, 38L, 17L, 17L, 16L, 22L,
17L, 17L, 37L, 37L, 22L, 21L, 21L, 38L, 27L, 16L, 22L, 16L, 18L,
36L, 16L, 17L, 33L, 17L, 37L, 22L, 21L, 37L, 22L, 22L, 17L, 36L,
17L, 17L, 17L, 17L, 17L, 54L, 17L, 16L, 17L, 36L, 37L, 18L, 37L,
36L, 16L, 17L, 17L, 36L, 17L, 17L, 36L, 27L, 16L, 17L, 17L, 17L,
17L, 17L, 33L, 21L, 17L, 19L, 17L, 22L, 21L, 21L, 16L, 36L, 15L,
17L, 18L, 21L, 16L, 17L, 37L, 36L, 21L, 21L, 37L, 17L, 26L, 17L,
37L, 16L, 17L, 37L, 37L, 22L, 36L, 17L, 36L, 17L, 36L, 37L, 17L,
38L, 33L, 37L, 37L, 16L, 37L, 37L, 36L, 17L, 16L, 37L, 36L, 22L,
36L, 21L, 37L, 37L, 21L, 17L, 14L, 17L, 37L, 37L, 17L, 37L, 36L,
37L, 37L, 16L, 36L, 22L, 37L, 52L, 17L, 37L, 16L, 36L, 18L, 37L,
18L, 17L, 37L, 37L, 37L), weight = c(NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, 40L, 48L, 29L, 46L, 36L, 52L,
8L, 22L, 35L, NA, NA, 7L, 22L, NA, NA, 9L, 42L, NA, 8L, 41L,
37L, 43L, 41L, 40L, 9L, 45L, 15L, 29L, NA, 39L, 42L, 43L, 46L,
41L, 41L, 40L, 45L, NA, 46L, 40L, 30L, NA, 39L, NA, NA, NA, 34L,
NA, 42L, 42L, 8L, NA, NA, 31L, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, 40L, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, 37L, 48L, NA, NA, 42L, 45L, 16L, 36L, NA, NA, 42L, 44L, NA,
41L, NA, 8L, 40L, 34L, 40L, NA, 20L, 44L, 44L, 36L, 33L, NA,
46L, NA, NA, 35L, 46L, NA, 37L, 34L, NA, 45L, NA, NA, NA, 7L,
51L, 39L, 29L, NA, NA, 48L, 46L, 41L, NA, NA, NA, 45L, 42L, 53L,
NA, NA, 49L, NA, 46L, 9L, 15L, 4L, 48L, NA, NA, NA, NA, NA, NA,
51L, NA, 50L, 44L, NA, NA, NA, 44L, 45L, 45L, NA, NA, 19L, NA,
NA, NA, 22L, 44L, 42L, 39L, 47L, NA, 21L, 42L, NA, 49L, NA, 39L,
43L, 50L, 41L, 47L, 37L, 41L, 36L, 45L, 20L, 40L, NA, 49L, NA,
NA, 55L, 46L, 38L, NA, NA, 44L, 21L, 41L, NA, 21L, NA, NA, 46L,
NA, NA, 36L, 44L, 53L, NA, 41L, 48L, 47L, NA, NA, 33L, 42L, 50L,
41L, 21L, NA, 49L, NA, NA, NA, 44L, 31L, 40L, 40L, 23L, 42L,
NA, NA, NA, 13L, 42L, 31L, NA, 39L, 48L, 48L, 29L, 45L, 39L,
23L, NA, 31L, NA, 43L, NA, 43L, NA, 8L, NA, 45L, NA, 40L, 41L,
41L, NA, 39L, NA, 25L, NA, NA, 45L, 36L, 40L, 44L, NA, 47L, NA,
40L, NA, 44L, NA, 44L, 117L, 7L, 40L, 39L, 40L, 121L, NA, 46L,
35L, NA, 115L, 7L, 39L, 40L, 40L, 35L, 36L, 44L, 6L, 7L, 120L,
48L, 44L, 38L, 118L, 40L, 126L, 37L, 132L, NA, NA, 39L, 113L,
NA, 7L, 122L, NA, 107L, 43L, 40L, 7L, 115L, 39L, NA, 40L, NA,
NA, 116L, 6L, 38L, 137L, 42L, 126L, 112L, 39L, 41L, 48L, 121L,
42L, 42L, 52L, 38L, 45L, 37L, 40L, 38L, 7L, NA, NA, 44L, 7L,
NA, 33L, 38L, 47L, 39L, 7L, NA, NA, 42L, 36L, NA, NA, 44L, 116L,
43L, 45L, 116L, NA, 42L, 38L, 114L, 41L, 40L, 134L, 139L, NA,
118L, 41L, 37L, NA, 6L, NA, 127L, NA, 6L, NA, 120L, 115L, NA,
40L, 114L, 37L, 46L, 149L, 38L, 127L, NA, 36L, 41L, NA, 44L,
138L, 110L, 110L, NA, NA, 37L, NA, 7L, 121L, NA, NA, 43L, NA,
43L, NA, 44L, 36L, NA, 8L, 38L, 122L, NA, 7L, 42L, 46L, 22L,
38L, 48L, 7L, 43L, 35L, 43L, NA, 36L, 117L, 37L, 122L, 43L, 42L,
NA, 7L, 45L, NA, NA, 40L, 37L, 117L, 40L, 40L, 132L, NA, 36L,
NA, NA, 150L, 44L, 40L, 126L, 122L, 136L, NA, 116L, 38L, 39L,
135L, 46L, 133L, 136L, 141L, NA, 38L, 35L, NA, 135L, NA, 33L,
51L, 122L, 33L, 47L, 49L, NA, 46L, 45L, 41L, 24L, 157L, 51L,
NA, 218L, 38L, 7L, NA, 45L, 52L, 50L, 51L, 126L, 39L, 24L, 23L,
40L, 41L, 46L, 25L, 25L, 39L, 42L, NA, 39L, 23L, NA, NA, 124L,
114L, 44L, 48L, NA, 44L, 132L, NA, 137L, NA, 39L, 56L, 35L, NA,
NA, 197L, 22L, 25L, 154L, 49L, 44L, 35L, 36L, 39L, 133L, 50L,
43L, 40L, 45L, 44L, 228L, 144L, 46L, 48L, 7L, 45L, 8L, 133L,
40L, 232L, 128L, 153L, 22L, 21L, 53L, NA, 8L, 25L, 43L, 43L,
38L, 42L, 26L, 146L, 25L, 28L, 8L, 29L, 122L, 137L, 131L, 125L,
NA, NA, NA, NA, 43L, NA, NA, 69L, 141L, 138L, 43L, 124L, NA,
NA, 43L, NA, 45L, 46L, NA, 43L, 49L, NA, 47L, NA, NA, NA, NA,
NA, 26L, 152L, 44L, 48L, 29L, 44L, 49L, 45L, 51L, 57L, NA, 134L,
44L, 30L, 35L, 48L, 146L, 37L, 46L, 110L, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA,
26L, 44L, NA, 48L, 39L, 44L, 45L, 27L, 36L, 51L, 45L, 47L, 90L,
23L, 49L, 131L, 114L, 42L, 148L, 76L, 141L, 42L, 121L, 44L, 55L,
133L, 142L, 142L, 46L, 50L, 142L, NA, 84L, 42L, 142L, 118L, 43L,
132L, 75L, 49L, 168L, 43L, 84L, NA, 87L, 117L, 42L, 41L, 140L,
40L, 45L, 225L, 18L, 47L, 48L, 89L, 51L, 8L, 47L, 149L, 124L,
73L, 48L, 139L, 41L, 123L, 41L, 114L, 59L, 204L, 90L, 45L, 212L,
43L, 91L, 50L, 44L, 113L, 36L, 90L, 50L, NA, 9L, NA, 29L, 137L,
57L, 121L, 31L, 41L, 37L, 83L, 174L, 116L, 74L, 130L, NA, 40L,
212L, 41L, 83L, 48L, 41L, 118L, 22L, 102L, 42L, 182L, 29L, 23L,
138L, 131L, 41L, 115L, 121L, 38L, 126L, 120L, 15L, 29L, 43L,
41L, 68L, 83L, NA, 97L, 21L, 21L, 44L, 18L, 40L, 41L, 129L, 148L,
42L, 41L, 24L, 108L, 160L, 30L, 54L, 7L, 125L, 100L, 21L, 49L,
35L, 37L, 64L, 131L, 54L, 44L, 90L, 39L, 13L, 114L, 90L, 46L,
110L, 119L, 29L, 48L, NA, 124L, 84L, 43L, 43L, 40L, 120L, 55L,
29L, 26L, 115L, 45L, 70L, 123L, 16L, 42L, 125L, 19L, 55L, 117L,
133L, 36L, 71L, 29L, 99L, 7L, 8L, 39L, 135L, 94L, 100L, 98L,
43L, 8L, 23L, 12L, 26L, 124L, 15L, 84L, 24L, NA, 122L, 200L,
17L, 46L, 149L, 23L, 8L, 136L, 102L, 122L, 40L, 71L, 42L, 130L,
160L, 82L, 134L, 38L, 40L, 37L, 29L, 107L, 100L, 32L, 38L, 73L,
134L, 119L, 50L, 43L, 59L, 48L, 58L, 41L, 81L, 93L, 28L, 44L,
28L, 24L, 232L, 127L, 16L, 44L, 35L, 17L, 122L, 122L, 32L, 48L,
95L, 45L, 51L, 47L, 119L, 124L, 87L, 85L, NA, 36L, 123L, 111L,
39L, 27L, 105L, 132L, 45L, 96L, 40L, 120L, 43L, 46L, 43L, 86L,
8L, 34L, 106L, 22L, 29L, 98L, 33L, 46L, 12L, 130L, 10L, 106L,
39L, 113L, 45L, 115L, 36L, 24L, 120L, 190L, 10L, 48L, 29L, 131L,
34L, 101L, 37L, 47L, 133L, 63L, 46L, 81L, 71L, 65L, 80L, 130L,
47L, 118L, 91L, 120L, 19L, 45L, 14L, 122L, 37L, 36L, 19L, 95L,
18L, 17L, 123L, 189L, 17L, 50L, 126L, 44L, 8L, 44L, 13L, 39L,
115L, 38L, 138L, 179L, 21L, 105L, 43L, 14L, 32L, 36L, 40L, 36L,
19L, 139L, 20L, 108L, 12L, 39L, 149L, 43L, 48L, 33L, 165L, 41L,
112L, 35L, 100L, NA, 34L, 88L, 31L, 123L, 6L, 137L, NA, 199L,
NA, 96L, 41L, 196L, 100L, 40L, 130L, 98L, 34L, 29L, NA, 36L,
36L, 49L, 30L, 83L, 14L, 88L, 47L, 43L, 136L, 82L, 33L, 70L,
119L, NA, 115L, NA, 33L, 158L, 46L, 107L, 126L, 19L, 24L, 45L,
189L, 122L, 39L, 31L, 30L, 124L, 54L, 133L, 122L, 110L, 7L, 52L,
49L, 8L, 19L, 43L, 181L, 14L, 24L, 128L, 136L, 100L, 44L, 13L,
40L, 41L, 6L, 127L, 7L, 24L, 134L, 20L, 15L, NA, 125L, 100L,
13L, 37L, 40L, 114L, 110L, 41L, 8L, 47L, 141L, 46L, 40L, 36L,
107L, 39L, 27L, 13L, NA, 47L, 134L, 197L, 39L, 86L, 15L, 6L,
158L, 118L, 123L, 41L, 49L, 124L, 42L, NA, 106L, 7L, 38L, 47L,
114L, NA, 140L, NA, 6L, 20L, 45L, 118L, 28L, 112L, 20L, 47L,
NA, 38L, 77L, 126L, 19L, 16L, 138L, 125L, 106L, 43L, 38L, 17L,
37L, NA, 120L, 38L, 125L, NA, 51L, 41L, 18L, 45L, 30L, 118L,
108L, 30L, 45L, 15L, NA, 35L, 50L, 41L, 112L, 41L, 129L, 131L,
45L, 41L, 40L, 134L, 132L, 42L, 121L, 120L, 98L, 124L, NA, 129L,
48L, 118L, 37L, 99L, 6L, 38L, NA, 41L, 35L, 6L, NA, 36L, 20L,
19L, 37L, 7L, 131L, 37L, 113L, NA, NA, 112L, 121L, 149L, NA,
110L, 16L, 38L, 39L, 115L, 7L, 135L, NA, 20L, 102L, NA, 16L,
45L, 6L, 25L, 42L, 46L, 106L, 24L, 7L, 120L, NA, 37L, 25L, 34L,
45L, 39L, 18L, 42L, 37L, 120L, 116L, 6L, 124L, 39L, 133L, 125L,
23L, 38L, 32L, 40L, 54L, 33L, 126L, 136L, 28L, 137L, 37L, 39L,
42L, 45L, 39L, 21L, 22L, 130L, 101L, 45L, 129L, 45L, 6L, 45L,
130L, 39L, 108L, 28L, 49L, 39L, 89L, 24L, 43L, 36L, 41L, 40L,
21L, 37L, 36L, NA, 111L, 45L, 132L, 107L, 119L, 121L, 218L, 111L,
37L, 37L, 26L, 38L, 105L, 41L, 38L, 22L, 121L, 38L, 153L, 43L,
22L, 40L, 41L, NA, 37L, 23L, 28L, 28L, 8L, 34L, NA, 29L, 28L,
37L, 128L, 40L, 44L, 37L, 119L, 39L, 223L, 33L, 38L, 25L, 7L,
32L, 41L, 136L, 46L, 101L, 52L, 122L, NA, 118L, 116L, 30L, 44L,
44L, 27L, 132L, NA, 42L, 181L, 40L, 38L, 42L, 32L, 46L, 120L,
113L, 42L, 44L, 37L, 126L, 124L, 111L, 42L, 38L, 169L, 118L,
29L, 23L, 40L, 43L, 38L, 142L, 45L, 49L, 111L, NA, 28L, 38L,
32L, NA, 36L, 26L, 21L, 45L, 37L, 128L, 42L, 37L, NA, 48L, 45L,
42L, 52L, 35L, 50L, 46L, 43L, 47L, 35L, 43L, 31L, 39L, 45L, 43L,
42L, 49L, 44L, 47L, 42L, 125L, 38L, 30L, 27L, 45L, 49L, 137L,
126L, 50L, 41L, 153L, 42L, 26L, 42L, 41L, 39L, 32L, 44L, 44L,
142L, 41L, 26L, 48L, NA, 37L, NA, 45L, NA, 52L, 43L, 40L, 48L,
40L, 37L, 50L, 47L, 44L, 32L, 61L, 48L, 123L, 36L, 109L, 46L,
44L, NA, 127L, 48L, 125L, 42L, 45L, 47L, 124L, 131L, 44L, 26L,
30L, 142L, 43L, 139L, 30L, 43L, 132L, 26L, 48L, 119L, 137L, 24L,
130L, 60L, 127L, 44L, 35L, 46L, 34L, 39L, 40L, 44L, 43L, 39L,
26L, 86L, 23L, 82L, 37L, 23L, 54L, 53L, 132L, 50L, 71L, 142L,
46L, 71L, 125L, 73L, 7L, 29L, 7L, 141L, 78L, 49L, 45L, 144L,
123L, 141L, 115L, 140L, 127L, 54L, 49L, 46L, 53L, 129L, 112L,
71L, 50L, 54L, 58L, 55L, NA, 31L, 46L, 112L, 129L, 45L, 47L,
73L, 75L, 140L, 86L, 50L, 239L, 127L, 144L, 46L, 71L, 76L, 51L,
130L, 143L, 49L, 124L, 46L, 34L, 71L, 119L, 19L, 143L, 85L, 63L,
51L, 28L, 166L, 15L, 48L, 67L, 13L, 143L, 23L, 126L, 97L, 18L,
61L, NA, 43L, 65L, 99L, 45L, 135L, 92L, 95L, 27L, 101L, 136L,
66L, 91L, 72L, 43L, 96L, 73L, 47L, 20L, 43L, 75L, 76L, 62L, 114L,
119L, NA, 63L, 70L, 147L, 136L, NA, 60L, 71L, 63L, 47L, 135L,
40L, 46L, 41L, 47L, 29L, 66L, 46L, 147L, 53L, 184L, 24L, 19L,
128L, 15L, NA, 113L, 20L, 44L, 88L, 114L, 101L, 40L, 40L, 112L,
45L, 21L, 105L, 140L, 107L, 123L, 50L, 132L, 93L, 20L, 44L, 36L,
53L, 45L, 57L, 105L, 18L, 27L, 8L, 116L, 41L, 120L, 9L, 96L,
143L, 94L, 128L, 91L, 156L, NA, 44L, 38L, 86L, 7L, 8L, 27L, NA,
43L, 32L, 48L, 99L, 21L, 34L, 206L, 60L, 14L, 27L, 50L, 120L,
59L, 112L, NA, 138L, NA, 95L, 53L, 16L, 70L, 110L, 10L, 53L,
79L, 44L, 41L, 24L, 27L, 32L, 10L, 40L, 141L, 165L, 116L, 93L,
9L, NA, 78L, 8L, 80L, 6L, 25L, 45L, 44L, 99L, 151L, 133L, 19L,
31L, 46L, 108L, 126L, 145L, 93L, 98L, 42L, 125L, 16L, NA, 36L,
25L, 108L, 16L, 44L, 17L, 44L, 31L, 40L, 35L, 11L, 11L, 59L,
94L, 68L, 111L, 23L, 20L, 45L, 124L, 17L, 94L, 136L, 148L, 24L,
35L, 41L, 53L, 132L, 106L, 128L, 46L, 119L, 125L, 27L, 27L, 72L,
35L, 94L, 45L, 17L, 106L, 15L, 45L, 144L, 47L, 40L, 105L, 45L,
28L, 30L, 93L, 93L, 124L, 103L, 27L, 81L, 48L, 142L, 53L, 87L,
144L, 117L, 20L, 19L, 14L, 49L, 18L, 29L, 47L, 23L, NA, 131L,
31L, 35L, 118L, 20L, 152L, 138L, 37L, 21L, 41L, 50L, 27L, 153L,
122L, 106L, 49L, 24L, NA, 19L, 14L, 40L, 34L, 34L, 46L, 45L,
16L, 21L, 49L, 23L, 7L, 40L, 46L, 29L, 119L, 129L, 22L, 24L,
35L, 46L, 7L, 124L, 53L, 46L, 43L, 25L, 31L, 120L, 26L, 51L,
14L, 26L, 52L, 137L, NA, 92L, 50L, 151L, 211L, 47L, 45L, 16L,
46L, 40L, 145L, 43L, 25L, 28L, 29L, 19L, 143L, 156L, 123L, 27L,
120L, 123L, 24L, 21L, 45L, 133L, 27L, 22L, 49L, 102L, 171L, 18L,
19L, 32L, 122L, 36L, 133L, 19L, 7L, 130L, 23L, NA, 19L, 35L,
49L, 50L, 135L, 126L, 16L, 49L, 26L, 47L, 47L, 23L, 274L, 127L,
7L, 21L, 49L, 24L, 30L, 20L, 40L, 22L, 49L, 22L, 6L, 17L, 48L,
7L, 22L, 26L, 23L, 9L, 31L, 23L, 21L, 24L, 124L, 50L, 130L, 136L,
34L, 7L, 30L, 21L, 7L, 128L, 33L, 51L, 25L, 28L, 34L, 109L, 48L,
50L, 141L, 35L, 8L, 52L, 49L, 25L, 36L, 186L, 7L, 51L, 41L, 27L,
21L, 20L, 153L, 23L, 53L, 43L, 22L, 44L, 45L, 50L, 54L, 43L,
110L, 118L, 41L, 49L, 22L, 36L, 42L, 19L, 22L, 122L, 29L, 44L,
51L, 118L, 168L, 36L, 46L, 43L, 46L, 45L, 42L, 19L, 43L, 46L,
29L, 134L, 31L, 40L, 53L, 122L, 48L, 54L, 45L, 20L, 24L, 48L,
23L, 22L, 23L, 42L, 41L, 134L, 48L, 36L, 44L, 217L, 50L, 8L,
154L, 141L, 42L, 35L, 143L, 9L, 39L, 133L, 11L, 39L, 16L, 46L,
50L, 18L, 103L, 46L, 49L, 21L, 36L, 53L, 10L, 33L, 37L, 29L,
132L, 8L, 23L, 36L, 21L, 29L, 49L, 23L, 32L, 24L, 47L, 22L, 12L,
150L, 49L, 34L, 40L, 132L, 25L, 36L, 50L, 45L, 47L, 46L, 29L,
136L, 45L, 9L, 27L, 214L, 20L, 25L, 40L, 30L, 48L, 114L, 131L,
8L, 32L, 9L, 9L, 51L, 17L, 26L, 32L, 25L, 114L, 31L, 49L, 50L,
142L, 10L, 9L, 187L, 50L, 52L, 44L, 43L, 42L, 23L, 46L, 37L,
42L, 44L, 113L, 48L, 39L, 21L, 239L, 42L, 20L, 46L, 241L, 21L,
43L, 48L, 47L, NA, 39L, 36L, 39L, 49L, 45L, 40L, 168L, 32L, NA,
29L, 44L, 51L, 46L, 22L, 43L, 26L, 37L, 36L, 20L, 36L, 45L, 40L,
37L, 10L, 7L, 120L, 131L, 38L, 53L, 49L, 68L, NA, 51L, 43L, 38L,
34L, 20L, 7L, 40L, 120L, 141L, 40L, 40L, 44L, 42L, 37L, 36L,
54L, 7L, 7L, 184L, 22L, 48L, 61L, 54L, 41L, 25L, 27L, 7L, 50L,
142L, 47L, 35L, 10L, 12L, 39L, 50L, NA, 128L, 16L, 25L, 32L,
47L, 43L, 44L, 133L, 8L, 40L, 47L, 21L, 42L, NA, 9L, 19L, 103L,
37L, 10L, 35L, NA, 36L, 52L, 46L, 35L, 23L, 24L, 40L, 51L, 147L,
43L, 48L, 23L, 55L, 52L, 46L, 147L, 48L, 155L, 129L, 38L, 50L,
40L, 29L, 126L, 37L, 52L, 37L, 81L, 79L, 46L, 47L, 40L, 49L,
143L, 36L, 41L, 38L, 51L, 39L, 45L, 48L, 47L, 56L, 39L, 41L,
46L, 42L, 44L, 49L, 46L, 51L, 46L, 170L, 134L, 136L, 87L, 46L,
7L, 33L, 47L, 5L, 26L, 26L, 8L, 42L, 51L, 11L, 11L, 7L, 105L,
7L, 46L, 9L, 71L, 143L, 42L, 147L, 9L, 142L, 45L, 37L, 43L, 24L,
8L, 21L, 41L, 40L, 8L, 42L, 7L, 10L, 49L, 54L, 7L, 24L, 26L,
50L, 41L, 70L, 126L, 44L, 6L, 41L, 49L, 40L, 55L, 38L, 114L,
42L, 39L, 48L, 74L, 40L, 49L, 145L, 55L, 47L, 15L, 36L, NA, 39L,
34L, 50L, 40L, 48L, 24L, 14L, 49L, 29L, 7L, 108L, 49L, 49L, 25L,
11L, 47L, 8L, 43L, 54L, 50L, 53L, 50L, 46L, 146L, 5L, 50L, 28L,
44L, 8L, 43L, 46L, 27L, 51L, 38L, 111L, 27L, 53L, 43L, 52L, 55L,
121L, 43L, 52L, 36L, 136L, 51L, 58L, 86L, NA, 38L, 7L, 21L, 52L,
126L, 42L, 43L, 10L, 67L, 16L, 42L, 39L, 124L, 49L, 50L, 44L,
57L, 44L, 49L, 52L, 7L, 38L, 43L, 8L, 44L, 147L, 37L, 43L, 132L,
9L, 10L, 48L, 42L, 38L, 40L, 42L, 10L, 51L, 135L, 46L, 114L,
118L, 42L, 9L, 147L, 46L, 47L, 147L, 37L, 52L, 46L, 46L, 47L,
53L, 22L, 45L, 48L, 12L, NA, 24L, 43L, 52L, 51L, 42L, 24L, 42L,
131L, 56L, 85L, 14L, 41L, 89L, 35L, 160L, 131L, 134L, 45L, 50L,
177L, 45L, NA, NA, 104L, 24L, 110L, 49L, 56L, 50L, 43L, 46L,
NA, 27L, 47L, 55L, 26L, 23L, 82L, NA, 114L, 50L, 24L, 33L, 43L,
44L, 6L, 51L, 36L, 43L, 39L, 42L, 141L, 43L, NA, 7L, 7L, 40L,
212L, 44L, 21L, 104L, 42L, 29L, 25L, 45L, 45L, 44L, 243L, 44L,
45L, 39L, 134L, 42L, 35L, 48L, 47L, 97L, 40L, 7L, 5L, 13L, 51L,
44L, NA, 12L, NA, 45L, 160L, 61L, 9L, 91L, 165L, 5L, 92L, 134L,
45L, 51L, 21L, 113L, 9L, 113L, 21L, NA, 53L, 36L, 65L, 117L,
144L, 50L, 51L, 54L, 33L, 44L, NA, 59L, 47L, 49L, 10L, 31L, 97L,
184L, 10L, 49L, 80L, 8L, 131L, 42L, 5L, 127L, 133L, 138L, 11L,
49L, 28L, 8L, 81L, 90L, 45L, 44L, 82L, 78L, 30L, 37L, 50L, 37L,
7L, 44L, 25L, NA, 7L, 45L, 51L, 23L, 135L, 36L, 15L, 155L, 19L,
10L, 7L, 10L, 132L, 145L, 43L, 114L, 95L, 130L, 49L, 9L, 30L,
143L, 43L, 12L, 55L, 140L, 49L, 33L, 12L, 122L, 10L, 108L, 92L,
8L, 48L, 125L, 32L, 104L, 51L, 43L, 49L, 141L, 8L, 7L, 10L, 48L,
131L, 8L, 74L, NA, 21L, 35L, 8L, 8L, 50L, 8L, 36L, 44L, 51L,
22L, 146L, 43L, 12L, 160L, 42L, 135L, 9L, 20L, 88L, 102L, 115L,
7L, 6L, 53L, 48L, 38L, 110L, 8L, 43L, 45L, 92L, 160L, 104L, 46L,
43L, 44L, 36L, 34L, NA, 130L, 43L, 105L, 38L, 33L, 49L, 51L,
108L, 45L, 154L, 109L, 8L, 133L, 41L, 148L, 119L, 127L, 144L,
140L, 40L, 78L, 104L, 72L, 142L, 53L, 17L, 113L, 73L, 28L, 120L,
102L, 29L, 138L, 53L, 27L, 207L, 19L, 78L, 30L, 31L, 97L, 84L,
45L, 68L, 49L, 7L, 7L, 24L, 154L, 48L, 104L, 43L, 39L, 6L, 43L,
72L, 30L, 39L, 79L, 133L, 56L, 138L, 99L, 134L, 102L, 134L, 43L,
48L, 8L, 7L, 47L, 189L, 43L, 73L, 86L, 105L, 45L, 123L, 98L,
87L, 75L, 174L, 50L, 135L, 142L, 54L, 54L, 153L, 105L, 149L,
115L, 78L, 43L, NA, 123L, 125L, 91L, 95L, 88L, 53L, 103L, 54L,
41L, 49L, 122L, 43L, 105L, 33L, 112L, 130L, 44L, 135L, 45L, 102L,
46L, 46L, 53L, 126L, 122L, 28L, 51L, 69L, 35L, 41L, 151L, 109L,
93L, 82L, 22L, 56L, 45L, 46L, 26L, 48L, 109L, 103L, 136L, 187L,
7L, 51L, NA, 11L, 101L, 54L, 133L, 58L, 141L, 144L, 123L, 118L,
18L, 80L, 49L, 209L, 37L, 97L, 102L, 105L, 44L, NA, 40L, 90L,
52L, 32L, 31L, 241L, 132L, 150L, 48L, 77L, 7L, 38L, 135L, 26L,
124L, 17L, 39L, 42L, 7L, 96L, 43L, 124L, 106L, 29L, 111L, 53L,
28L, 25L, 20L, 106L, 111L, 33L, NA, 7L, 26L, 42L, 131L, 40L,
30L, NA, 75L, 45L, 90L, 24L, 35L, 7L, 113L, 24L, 32L, 191L, 104L,
47L, 135L, 143L, 143L, 93L, 108L, 41L, 34L, 49L, NA, 207L, 47L,
122L, 47L, 71L, 44L, 42L, 54L, NA, 43L, 80L, 7L, 48L, 134L, 95L,
32L, 46L, 50L, 14L, 136L, 7L, 29L, 128L, 8L, 18L, 114L, 92L,
45L, 19L, 33L, 43L, 43L, 39L, 46L, 121L, 8L, 32L, 140L, 108L,
99L, 134L, 115L, 34L, 118L, 46L, 134L, 102L, 51L, 43L, 149L,
113L, 35L, 29L, 83L, NA, 154L, 173L, 13L, 55L, 50L, 9L, 10L,
137L, 44L, 131L, 53L, 138L, 10L, 35L, 6L, 41L, 30L, 18L, 42L,
25L, 42L, 143L, 42L, 10L, 136L, 28L, 120L, 111L, 45L, 48L, NA,
139L, 54L, 115L, 34L, 35L, 9L, 18L, 51L, 131L, 108L, 16L, NA,
124L, 111L, 114L, 120L, 35L, 150L, 145L, 124L, 143L, 9L, 122L,
8L, 33L, 134L, 49L, 52L, 21L, NA, NA, 118L, 27L, 8L, 110L, 8L,
205L, 16L, 41L, 8L, 16L, 16L, 141L, 10L, 52L, 172L, 13L, 45L,
139L, 55L, 47L, 55L, 6L, 138L, 109L, 21L, 44L, 8L, 51L, 39L,
14L, 130L, 129L, 47L, 6L, 29L, 144L, 38L, 16L, 119L, 15L, 13L,
35L, 128L, 20L, 151L, 38L, 24L, 128L, 43L, 22L, 171L, 24L, 39L,
149L, 52L, 124L, 39L, 46L, 212L, 7L, 18L, NA, 18L, 150L, 130L,
142L, 26L, 49L, 8L, 18L, 41L, 39L, 140L, 26L, 32L, 22L, 45L,
200L, 47L, 26L, 11L, 140L, 121L, 137L, 126L, 7L, 116L, 48L, 110L,
8L, 137L, 45L, 49L, 120L, 44L, 61L, 36L, 25L, 42L, 13L, 16L,
23L, 62L, 25L, 47L, 14L, 40L, 22L, 40L, 40L, 131L, 21L, 149L,
25L, 193L, 136L, 24L, 22L, 7L, 52L, 154L, 43L, 33L, 155L, 40L,
115L, 121L, NA, 124L, 47L, 52L, 153L, 34L, 35L, 122L, 144L, 121L,
7L, 7L, 50L, 48L, 27L, 191L, 48L, 42L, 133L, 37L, 127L, 38L,
39L, 145L, 50L, 38L, 53L, 45L, 146L, 45L, 20L, 48L, 28L, 121L,
39L, 43L, 46L, 129L, 106L, 40L, 124L, 46L, 111L, 104L, 121L,
47L, 40L, 43L, 40L, 40L, 127L, 46L, 49L, 20L, 47L, 38L, 32L,
46L, 22L, 125L, 47L, 39L, 40L, 146L, 49L, 47L, 48L, 41L, 40L,
45L, 46L, 50L, 43L, NA, 22L, 44L, 131L, 6L, 15L, 48L, 133L, 17L,
193L, 134L, 127L, 39L, 51L, 23L, 38L, 47L, 138L, 122L, 44L, 111L,
45L, 7L, 42L, 126L, 135L, 21L, 33L, 46L, 51L, 47L, 117L, 56L,
21L, 47L, 41L, 7L, 31L, 7L, 40L, 35L, 30L, 56L, 51L, 147L, 48L,
43L, 46L, 46L, 35L, 198L, 35L, 33L, 148L, 26L, 174L, 7L, 50L,
39L, 23L, 25L, NA, 49L, 154L, 47L, 51L, 26L, 33L, 149L, 40L,
47L, 152L, 22L, 139L, 44L, 120L, 7L, 139L, 42L, 41L, 66L, 46L,
49L, 35L, 21L, 46L, 7L, 123L, 45L, 127L, 48L, 49L, 52L, 51L,
44L, 126L, 43L, 32L, 47L, 129L, 54L, 40L, 49L, 135L, 145L, 51L,
56L, 43L, 46L, 41L, 48L, 41L, 49L, 118L, 119L, 50L, 131L, 134L,
43L, 52L, 52L, 43L, 41L, 48L, 45L, 44L, 133L, 151L, 37L, 45L,
142L, 49L, 56L, 29L, 21L, 52L, 44L, 130L, 131L, 48L, 47L, 22L,
7L, 120L, 189L, 40L, 54L, 137L, 36L, 52L, 48L, 51L, 40L, 43L,
120L, 8L, 127L, 120L, 60L, 150L, 147L, 23L, 140L, 189L, NA, 129L,
130L, 59L, 30L, 31L, 7L, 52L, 33L, 116L, 46L, 59L, 19L, 44L,
52L, 34L, 19L, 49L, 140L, 46L, 118L, 38L, 192L, 49L, 130L, 57L,
49L, 11L, 37L, 24L, 9L, 34L, 14L, 130L, 12L, 158L, 57L, 116L,
34L, 24L, 131L, 136L, 37L, 24L, 148L, 48L, 46L, 28L, 46L, 36L,
139L, 120L, 28L, 43L, 33L, 39L, 51L, 45L, 47L, 45L, 27L, 50L,
136L, 121L, 46L, 40L, 37L, 200L, 55L, 48L, 41L, 47L, 127L, 24L,
132L, 123L, 49L, 148L, 57L, 124L, 59L, 47L, 40L, 48L, 25L, 26L,
130L, 128L, 49L, 32L, 50L, 47L, 138L, 55L, 53L, 37L, 173L, 150L,
37L, 11L, 54L, 47L, 7L, 156L, 199L, 53L, 32L, 135L, NA, 41L,
8L, 50L, 144L, 49L, 33L, 61L, 43L, 53L, 39L, 56L, 142L, 153L,
52L, 34L, 44L, NA, 33L, 46L, 47L, 42L, 41L, 42L, 25L, 195L, 35L,
135L, 25L, 137L, 24L, 132L, 143L, 37L, 139L, 38L, 130L, 122L,
9L, 42L, 35L, 7L, 12L, 15L, 59L, 158L, 142L, 147L, 137L, NA,
218L, 55L, 9L, 53L, 126L, 37L, 60L, 41L, 28L, 40L, 49L, 133L,
55L, 33L, 47L, 46L, 48L, 47L, 46L, 8L, 43L, 135L, 147L, 8L, 48L,
52L, 136L, 41L, 39L, 140L, 51L, 44L, 130L, 55L, 50L, 53L, 52L,
51L, 57L, 133L, 47L, 153L, 47L, 50L, 174L, 41L, 48L, 59L, 136L,
120L, 34L, 36L, 57L, 153L, 49L, 49L, 44L, 39L, 39L, 49L, 7L,
130L, 49L, 29L, 10L, 36L, 47L, 142L, 13L, 11L, 138L, 39L, 10L,
141L, 44L, 28L, 54L, 6L, 39L, NA, 150L, 9L, 31L, 126L, 56L, 120L,
135L, 38L, 42L, 66L, 141L, 223L, 44L, 52L, 11L, 136L, 72L, 11L,
51L, 31L, 16L, 51L, 51L, 43L, 49L, 50L, 151L, 82L, 50L, 47L,
25L, 45L, 148L, 131L, 49L, 58L, 51L, 37L, 124L, 29L, 43L, 45L,
48L, 129L, 128L, 50L, 56L, 159L, 28L, 27L, 89L, 75L, 22L, 51L,
77L, 114L, 6L, 45L, 136L, 42L, 18L, 9L, 33L, 50L, 60L, 81L, 39L,
151L, 136L, 12L, 79L, 177L, 30L, 137L, 6L, 150L, 7L, 139L, 40L,
39L, 49L, 39L, 44L, 137L, 50L, 43L, 126L, 52L, 44L, 153L, 9L,
43L, 49L, 50L, 60L, 34L, 43L, 47L, 7L, 115L, 47L, 46L, 120L,
40L, 52L, 49L, 54L, 39L, 147L, 47L, 38L, 45L, 52L, 46L, 43L,
17L, 30L, 49L, 55L, 47L, 58L, 44L, 40L, NA, 47L, 44L, 4L, NA,
231L, 43L, 45L, 14L, NA, 23L, 22L, 48L, 54L, 50L, 132L, 125L,
48L, 43L, 47L, 48L, 44L, 24L, 44L, 100L, 131L, 52L, 138L, 135L,
140L, 104L, 29L, 50L, 58L, 93L, 129L, 43L, 155L, 49L, 141L, 36L,
120L, 43L, NA, 50L, 98L, 82L, 42L, 44L, 54L, 23L, 53L, 47L, 47L,
20L, 49L, 43L, 51L, 128L, 43L, 49L, 129L, 101L, 147L, 5L, 122L,
47L, 38L, 69L, 17L, 89L, 47L, 41L, 37L, 137L, 59L, 136L, 141L,
100L, 134L, 55L, 48L, 101L, 26L, 39L, 128L, 121L, 46L, 36L, 49L,
NA, 47L, 127L, 125L, 36L, 42L, 45L, 49L, 41L, 51L, 48L, 122L,
NA, 135L, 45L, 50L, 136L, 192L, 49L, NA, 142L, 42L, 48L, 98L,
51L, 149L, 90L, 43L, 38L, 40L, 40L, 45L, 45L, 46L, 43L, 49L,
8L, 46L, 40L, 41L, 42L, 37L, 8L, 45L, 32L, 109L, 139L, 42L, 135L,
45L, 48L, 131L, 138L, 45L, 46L, 46L, 48L, 43L, 143L, 50L, 34L,
125L, 119L, 8L, 147L, 126L, 77L, 43L, 118L, 44L, 41L, 52L, 138L,
27L, 54L, NA, 36L, 86L, 40L, 129L, 38L, 50L, 95L, 133L, 45L,
53L, 145L, 44L, 42L, 48L, 60L, 130L, 24L, 45L, 81L, 39L, NA,
51L, 50L, 46L, 32L, 35L, 54L, 44L, 44L, 138L, 35L, 31L, 43L,
137L, 133L, 49L, 47L, 46L, 39L, 19L, 47L, 46L, 51L, 126L, 48L,
122L, 49L, 123L, 109L, 58L, 34L, 44L, 52L, 50L, 44L, 42L, 45L,
94L, 88L, 42L, 34L, 46L, 46L, 122L, 48L, 123L, 133L, 46L, 5L,
45L, 25L, 46L, 54L, NA, 50L, 4L, 44L, 131L, 42L, 15L, 130L, 48L,
55L, 47L, 140L, NA, 133L, 220L, NA, 46L, 131L, 41L, 115L, 124L,
46L, 44L, 38L, 46L, 14L, 46L, 25L, 49L, 51L, 46L, 50L, 46L, 25L,
49L, 81L, 22L, 42L, 44L, 46L, 41L, 49L, 48L, 136L, 37L, 46L,
125L, 48L, 119L, 42L, 42L, 78L, 49L, 43L, 125L, 52L, 48L, 137L,
49L, 34L, 117L, 46L, 84L, 21L, 110L, 40L, 7L, 41L, 60L, 21L,
53L, 18L, 147L, 44L, 18L, 12L, 120L, 45L, 251L, 94L, 25L, 42L,
129L, 145L, 15L, 31L, 29L, 43L, 46L, 122L, 136L, 114L, 41L, 56L,
42L, 151L, 134L, 161L, NA, 56L, NA, 142L, 31L, 120L, NA, 46L,
47L, 9L, 44L, 95L, 38L, 45L, 29L, 43L, 208L, 46L, 135L, 58L,
50L, 46L, 45L, 46L, 38L, 41L, 26L, 48L, 47L, 48L, 45L, 60L, 120L,
42L, 56L, 119L, 108L, 44L, 41L, 46L, 101L, 48L, 96L, 30L, 39L,
133L, 47L, 144L, 41L, 146L, 74L, 7L, 136L, 17L, 17L, 48L, 41L,
52L, 7L, 47L, 52L, 133L, 135L, 6L, 48L, 96L, 82L, 21L, 123L,
8L, 148L, 35L, 63L, 55L, 119L, 132L, 41L, 7L, 137L, 46L, 152L,
95L, 71L, 130L, 44L, 45L, 9L, 48L, 50L, 46L, 103L, 20L, 48L,
41L, 53L, 6L, 28L, 133L, 46L, 38L, 52L, 87L, 51L, 123L, 103L,
128L, 62L, 64L, 47L, 49L, 91L, 143L, 30L, 10L, 140L, 33L, 148L,
78L, 24L, 52L, 38L, 25L, 121L, 128L, 90L, 11L, 6L, 7L, 15L, 159L,
NA, 12L, 15L, 36L, 97L, 138L, 85L, 48L, 101L, 43L, 20L, 100L,
46L, 39L, 128L, 42L, 36L, 44L, 44L, NA, 26L, 23L, 119L, 42L,
36L, 105L, 40L, 45L, 53L, 133L, 18L, 21L, 136L, 7L, 33L, 22L,
45L, 138L, 67L, 141L, 157L, 27L, 144L, 133L, 74L, NA, 46L, 27L,
123L, 12L, 136L, 123L, 132L, 38L, 114L, 22L, 61L, 47L, 37L, 43L,
50L, 45L, NA, NA, 46L, 11L, 48L, 126L, 39L, 52L, 50L, 44L, 41L,
44L, 48L, 47L, 120L, 44L, 31L, 47L, 137L, 144L, 46L, 18L, 141L,
146L, 125L, 25L, 141L, 89L, 96L, 53L, 34L, 46L, 35L, 6L, 26L,
109L, 58L, 49L, 38L, 40L, NA, 23L, 48L, 85L, 45L, 144L, 158L,
33L, NA, 31L, 50L, 49L, 135L, 65L, 6L, 5L, 84L, 8L, 7L, 8L, 27L,
130L, 123L, 48L, 130L, 95L, 131L, 90L, 133L, 47L, 86L, 44L, 122L,
76L, 43L, 51L, 28L, 85L, 48L, 45L, 93L, 47L, 45L, 6L, 54L, 99L,
41L, 174L, 45L, 114L, 18L, 8L, 39L, 73L, 135L, 92L, 47L, 128L,
101L, 37L, 46L, NA, 100L, 31L, 57L, 100L, 42L, 175L, 45L, 18L,
15L, 29L, 53L, 39L, 46L, 15L, 32L, 41L, 125L, 144L, 36L, 61L,
44L, 45L, 56L, 43L, 44L, 42L, 129L, 10L, 11L, 44L, 54L, 148L,
11L, 36L, 46L, 29L, 22L, 6L, 51L, 41L, 193L, 58L, 44L, 162L,
45L, 44L, 117L, 59L, 112L, 47L, 46L, 131L, 137L, 19L, 158L, 27L,
35L, 145L, 54L, NA, 33L, 21L, 53L, 47L, 16L, 141L, 172L, 53L,
42L, 46L, 46L, 51L, 42L, 37L, 126L, 47L, 119L, 53L, 173L, 9L,
49L, 49L, 123L, 156L, 23L, 56L, 42L, 44L, 146L, 47L, 57L, 14L,
50L, 45L, 43L, 46L, 156L, 37L, 145L, 47L, 57L, 32L, 27L, 23L,
20L, 165L, 21L, 51L, 48L, 24L, 185L, 155L, 145L, 42L, 58L, 47L,
140L, 44L, 52L, 160L, 16L, 16L, 30L, 48L, 144L, 42L, 38L, 22L,
20L, 146L, 151L, 208L, 14L, 125L, 62L, 153L, 152L, 137L, 155L,
21L, 49L, 19L, 46L, 24L, 57L, 235L, 47L, 20L, 48L, 41L, 24L,
39L, 43L, 43L, 42L, 27L, 25L, 137L, 26L, 26L, 19L, 44L, 18L,
24L, 44L, 15L, 17L, 18L, 19L, 19L, 43L, 165L, 25L, 22L, 24L,
51L, 112L, 46L, 25L, 162L, 19L, 24L, 19L, 49L, 45L, 18L, 135L,
54L, 157L, 6L, 8L, 40L, 39L, 158L, 28L, 42L, 40L, 45L, 49L, 138L,
177L, 43L, 17L, 54L, 21L, 195L, 42L, 9L, 59L, 78L, 14L, 125L,
43L, 172L, 187L, 145L, 47L, 38L, 51L, 49L, 165L, 22L, 136L, 22L,
20L, 35L, 38L, 264L, 23L, 50L, 139L, 10L, 21L, 8L, NA, 45L, 10L,
24L, 46L, 186L, 161L, 44L, 50L, 44L, 27L, 146L, 49L, 154L, NA,
31L, 19L, 169L, 26L, NA, 56L, 220L, 54L, 24L, 24L, 35L, 24L,
151L, 54L, 170L, 26L, 49L, 166L, 22L, 48L, 48L, 24L, 10L, 44L,
11L, 144L, 51L, 41L, 55L, 51L, 23L, 52L, 22L, 6L, 43L, 44L, 186L,
NA, NA, 142L, 104L, 141L, 34L, 9L, 32L, 49L, 52L, 47L, 157L,
54L, 22L, 21L, 59L, 194L, 139L, 58L, 36L, 47L, 161L, 47L, 192L,
34L, 36L, 49L, 142L, 8L, NA, 38L, 129L, 39L, 7L, 26L, 70L, 9L,
NA, 44L, 144L, 45L, 7L, 51L, 43L, NA, 44L, 19L, 42L, 50L, 19L,
139L, 19L, 43L, 137L, 147L, 23L, 8L, 10L, 10L, 124L, 16L, 44L,
7L, 10L, 9L, 18L, 40L, 10L, 137L, 11L, 14L, 20L, 162L, 24L, 8L,
150L, 9L, 37L, 12L, 212L, 23L, 9L, 39L, 117L, 22L, 7L, 22L, 9L,
24L, 83L, 134L, 37L, 39L, 112L, 110L, 40L, 8L, 54L, 34L, 110L,
157L, 26L, 38L, 23L, 49L, 7L, 23L, 180L, 45L, 7L, 38L, 25L, 21L,
135L, 34L, 14L, 140L, 140L, 46L, 43L, 27L, 21L, 45L, 50L, 49L,
23L, 38L, 153L, 44L, 47L, 45L, 49L, 42L, 11L, 193L, 10L, 163L,
78L, 6L, 49L, 45L, 117L, 49L, 124L, 168L, 160L, 83L, 24L, 40L,
9L, 61L, 25L, 38L, 206L, 51L, 15L, 51L, 21L, 56L, 42L, 27L, 16L,
55L, 11L, 34L, 24L, 38L, 53L, 152L, 25L, 155L, 47L, 48L, 22L,
220L, 7L, 33L, 38L, 42L, 48L, 44L, 48L, 9L, 8L, 22L, 149L, 24L,
120L, 13L, 168L, 48L, 44L, 46L, 7L, 21L, 51L, 30L, 11L, 12L,
133L, 44L, 151L, 20L, 44L, 19L, 48L, 39L, 45L, 10L, NA, 14L,
190L, 11L, 10L, 27L, NA, 33L, 39L, 6L, 38L, 58L, 25L, 46L, 23L,
42L, 41L, 56L, 25L, 24L, 38L, 10L, 45L, 195L, 50L, 30L, 89L,
23L, NA, 18L, 35L, 42L, 194L, 56L, 44L, 23L, 7L, 24L, 82L, 54L,
38L, 40L, 38L, 42L, 44L, 41L, 7L, 8L, 42L, 49L, 22L, 13L, 126L,
43L, 11L, 165L, 7L, 23L, 56L, 134L, 24L, 44L, 12L, 41L, 40L,
46L, 30L, 10L, 11L, 36L, 52L, 37L, 51L, 54L, NA, 22L, 29L, 46L,
22L, 150L, 9L, 9L, 23L, 6L, 43L, 38L, NA, 46L, 38L, 122L, 226L,
22L, 32L, 130L, 13L, 21L, 100L, 22L, 4L, 135L, 48L, 226L, 22L,
24L, NA, 9L, 158L, 46L, 9L, 10L, NA, 10L, 8L, 38L, 8L, 49L, 48L,
154L, 45L, 47L, 51L, 80L, 39L, 26L, 43L, 88L, 11L, 7L, 10L, 8L,
11L, 12L, 11L, 41L, 10L, 46L, 11L, 42L, 19L, 46L, 145L, 8L, 41L,
42L, 41L, 108L, 13L, 43L, 8L, 7L, 38L, 248L, 198L, 11L, 211L,
21L, 47L, 23L, 46L, 45L, 9L, 9L, 35L, 36L, 133L, 49L, 56L, 43L,
10L, 49L, 48L, 56L, NA, 44L, 11L, 7L, 39L, 128L, 46L, 107L, 21L,
6L, 10L, 76L, 10L, 36L, 8L, 26L, 11L, 41L, 15L, 9L, NA, 138L,
54L, 51L, 44L, 44L, 13L, 7L, 51L, 54L, 41L, 76L, 49L, 11L, 24L,
36L, 41L, 235L, 52L, 45L, 45L, 46L, NA, 27L, 22L, 8L, 93L, 19L,
9L, 133L, 102L, 160L, 20L, 54L, 59L, 160L, 8L, NA, 132L, 21L,
44L, 51L, 44L, 17L, 202L, 137L, 23L, 9L, 20L, 59L, 52L, 23L,
155L, 46L, 47L, 10L, 49L, 130L, 34L, 9L, 36L, 41L, 32L, 22L,
11L, 43L, 37L, 106L, 7L, 142L, 39L, 40L, 164L, 116L, 24L, 10L,
46L, 12L, 94L, 9L, 11L, 10L, 9L, 18L, 12L, 44L, 151L, 48L, 22L,
10L, 24L, 22L, 143L, 6L, NA, 9L, 9L, 23L, 11L, 9L, 22L, 49L,
46L, 11L, 212L, 39L, 45L, 47L, 7L, 49L, 211L, 136L, 24L, 10L,
23L, 45L, 10L, 14L, 10L, 10L, 8L, 46L, 52L, 48L, 12L, 53L, 42L,
18L, 12L, 8L, 17L, 12L, 11L, 11L, 120L, 21L, 63L, 6L, 73L, 8L,
46L, 43L, 12L, 38L, 11L, 154L, 10L, 27L, 18L, 44L, 40L, NA, 21L,
53L, 11L, 40L, 160L, 42L, 190L, 37L, 48L, 54L, 54L, 103L, 44L,
6L, 46L, 26L, 45L, 9L, 41L, 57L, 88L, 38L, 123L, 90L, 50L, 26L,
31L, 48L, 129L, 22L, 48L, 109L, 44L, 76L, 101L, 39L, 34L, 32L,
106L, 159L, 14L, 48L, 10L, 10L, 9L, 55L, 26L, 91L, 8L, 20L, 54L,
12L, 28L, 12L, 28L, 42L, 140L, 9L, 85L, 45L, 138L, 48L, 11L,
10L, 53L, 51L, 46L, 26L, 76L, 23L, 44L, 51L, 140L, 6L, 90L, 52L,
21L, 59L, 45L, 17L, 38L, 29L, 9L, 56L, 13L, 51L, 16L, 21L, 9L,
128L, NA, 20L, 17L, 41L, 44L, 41L, 114L, 217L, 51L, 94L, 102L,
13L, NA, 130L, 9L, 41L, 41L, 11L, 10L, 41L, 32L, 45L, 11L, 8L,
46L, 116L, 26L, 59L, 11L, 21L, 87L, 46L, 42L, 36L, 42L, NA, 19L,
47L, 11L, 27L, NA, 50L, 110L, 24L, 146L, 19L, 54L, 10L, 48L,
44L, 26L, 44L, 43L, 9L, 49L, 51L, 46L, NA, 44L, 42L, 5L, 129L,
19L, 47L, 19L, 12L, 102L, 49L, 149L, 106L, 134L, 9L, 203L, 146L,
53L, 18L, 74L, 90L, 78L, 32L, 17L, 7L, 8L, 114L, 44L, 72L, 9L,
90L, 120L, 58L, 153L, 20L, 12L, 43L, 54L, 129L, 125L, 72L, 82L,
16L, 42L, 94L, 84L, 43L, 33L, 15L, 10L, 125L, 87L, 39L, 43L,
6L, 40L, 44L, 44L, 153L, 130L, 23L, 98L, 46L, 7L, 35L, 131L,
51L, 42L, 7L, 23L, 23L, 26L, 113L, NA, 103L, 7L, 183L, 102L,
127L, 44L, 32L, 11L, 37L, 26L, 42L, 110L, 252L, 106L, 115L, 7L,
10L, 42L, 123L, 45L, 128L, 21L, 62L, 98L, 133L, 59L, 121L, 23L,
8L, NA, 43L, 40L, 63L, NA, 41L, 41L, 25L, 152L, 46L, 19L, NA,
67L, 15L, 42L, 72L, 39L, 44L, 10L, 40L, 135L, 20L, 164L, 10L,
49L, 24L, 84L, 10L, 65L, 42L, 22L, 34L, 21L, 24L, NA, 44L, 140L,
110L, 28L, 45L, 28L, 18L, 23L, 43L, 9L, 32L, 40L, 141L, 7L, 21L,
45L, 23L, 30L, 164L, 98L, 210L, NA, 9L, 10L, 51L, 14L, 103L,
NA, 205L, 127L, 36L, 127L, 138L, 25L, 67L, 132L, 136L, NA, 33L,
53L, 29L, 11L, 8L, 46L, 26L, 32L, 75L, 43L, 84L, 98L, 87L, 52L,
41L, 45L, 10L, 145L, 36L, 150L, 44L, 56L, 24L, 22L, 8L, 5L, 40L,
17L, 132L, 24L, 42L, 40L, 40L, 45L, 43L, 135L, 52L, 99L, 35L,
49L, 48L, 173L, 44L, 42L, 12L, 13L, 36L, 23L, 7L, 6L, 7L, 33L,
NA, 12L, 30L, 237L, 125L, 47L, NA, 183L, 125L, 127L, 29L, 102L,
120L, 97L, 32L, 53L, 85L, 83L, 9L, 29L, 10L, 7L, NA, 50L, NA,
143L, NA, 16L, 222L, 37L, 143L, 100L, 114L, 8L, 49L, 95L, 8L,
42L, 8L, 23L, 49L, 118L, 46L, 22L, 120L, 110L, 30L, 80L, 149L,
26L, 24L, 104L, 112L, 44L, 6L, 42L, 34L, 130L, 45L, 11L, 126L,
38L, 46L, 17L, 181L, 36L, 124L, 91L, 49L, 52L, 9L, NA, 16L, 18L,
30L, 105L, 8L, 41L, 21L, 43L, 25L, 39L, 10L, 115L, 120L, 14L,
20L, 52L, 11L, 136L, 29L, 92L, 86L, 55L, 18L, 39L, 21L, 14L,
8L, 46L, 91L, 32L, NA, 39L, 42L, 90L, 38L, 24L, 9L, 40L, 91L,
95L, 94L, 48L, 51L, 21L, 99L, 135L, 46L, 182L, 85L, 116L, 39L,
33L, 146L, 39L, 7L, 106L, 13L, 42L, 33L, 111L, 31L, 7L, 7L, 41L,
47L, 96L, 44L, 17L, 34L, 18L, 90L, 121L, 113L, 44L, 30L, 52L,
20L, 42L, 36L, 41L, 43L, 45L, 19L, 83L, 164L, 56L, 33L, 43L,
123L, 15L, 21L, 16L, NA, 49L, 34L, 34L, 27L, 133L, 26L, 44L,
94L, 219L, 6L, 15L, 38L, 195L, 28L, 25L, 147L, 51L, 84L, 8L,
13L, 8L, 109L, 32L, 57L, 6L, 38L, 18L, 145L, 46L, 103L, 35L,
43L, 132L, 36L, 98L, 8L, 49L, 39L, NA, NA, 123L, 46L, NA, 119L,
45L, 8L, 15L, NA, NA, 50L, 39L, 129L, 41L, 24L, 24L, 45L, 86L,
9L, 44L, 139L, 104L, 39L, 50L, 60L, 49L, 24L, 43L, 25L, 14L,
43L, 90L, 116L, 92L, 55L, 22L, 204L, 28L, 34L, 223L, 184L, 117L,
106L, 24L, 7L, 40L, 5L, 41L, 41L, 18L, 34L, 8L, 21L, 12L, 46L,
21L, 6L, 49L, NA, 40L, 48L, 40L, 22L, 181L, 21L, 23L, 7L, 9L,
42L, 139L, 33L, 21L, 115L, 24L, 40L, 42L, 78L, 16L, 105L, 150L,
114L, 6L, 123L, 23L, 98L, 22L, 45L, 34L, 46L, 38L, 109L, 24L,
17L, 45L, 99L, 11L, 97L, NA, 136L, 134L, 122L, 25L, 6L, 99L,
8L, NA, 7L, 98L, 41L, 108L, NA, 23L, 120L, 184L, 8L, 31L, 21L,
22L, 112L, 43L, 20L, 22L, 122L, 20L, 121L, 33L, 18L, 28L, 23L,
105L, NA, 40L, 43L, 47L, 126L, 45L, 22L, 15L, 95L, NA, 51L, 19L,
51L, 6L, 7L, 22L, 33L, 34L, 98L, 120L, NA, 8L, 136L, 49L, 37L,
36L, 16L, 41L, 35L, 23L, 28L, 105L, 43L, 29L, 34L, 11L, 38L,
44L, 112L, 47L, 14L, 26L, 7L, 51L, 116L, 105L, 125L, 26L, 146L,
46L, 30L, 18L, 6L, 10L, 37L, 21L, 110L, 27L, 142L, 7L, 112L,
51L, 25L, 42L, 40L, 47L, 139L, 48L, 22L, 94L, 48L, 27L, 125L,
41L, 112L, 16L, 30L, 37L, 21L, 6L, 172L, 44L, NA, 39L, 6L, 49L,
7L, 16L, 40L, 12L, 94L, 202L, 129L, 46L, 23L, 41L, 124L, 14L,
50L, 127L, 14L, 29L, 55L, 119L, 40L, 7L, 21L, 45L, 21L, 5L, 101L,
5L, 8L, 36L, 40L, 5L, 9L, 13L, 42L, 56L, 35L, NA, 47L, 39L, 32L,
28L, 145L, 40L, 34L, 178L, 127L, 50L, 112L, 14L, 47L, 31L, 21L,
34L, 7L, 121L, 152L, 137L, 7L, 117L, NA, 103L, 43L, 41L, 20L,
111L, 44L, 49L, 152L, 41L, 13L, 130L, 118L, 16L, 46L, 8L, NA,
NA, 40L, 11L, 47L, 17L, 23L, 159L, 39L, 34L, 6L, 27L, 40L, 34L,
7L, 38L, 14L, 37L, 106L, 24L, 45L, 131L, 42L, 110L, 34L, 43L,
102L, 23L, 19L, 105L, 42L, 112L, 47L, 213L, 11L, 28L, 36L, 33L,
33L, 127L, 54L, 44L, 40L, 39L, 189L, 34L, 48L, 109L, 45L, 125L,
117L, 28L, 23L, NA, 39L, 34L, 52L, 49L, 123L, NA, 116L, 123L,
125L, 114L, 27L, 8L, 48L, 12L, 43L, 29L, 51L, 23L, 44L, 126L,
36L, 42L, 35L, 139L, 47L, 42L, 6L, 47L, 28L, 15L, 40L, 40L, 48L,
21L, 54L, 25L, 28L, 18L, 45L, 24L, 47L, 39L, 25L, 29L, 11L, 34L,
26L, 23L, 6L, 149L, 8L, 46L, 43L, 52L, 49L, 20L, 41L, 6L, 6L,
37L, 49L, 28L, 7L, 150L, 14L, 38L, 23L, 43L, 48L, 7L, 184L, 25L,
137L, 42L, 120L, 41L, NA, 23L, 118L, 6L, 19L, 36L, 53L, 15L,
29L, 47L, 29L, 31L, 40L, 42L, 38L, 27L, 205L, 47L, 142L, 43L,
44L, 41L, 43L, 36L, 45L, 116L, 47L, 6L, 46L, 7L, 22L, 6L, 43L,
51L, 148L, 59L, 23L, 219L, 20L, 27L, 49L, 23L, 42L, 42L, 126L,
50L, 31L, 39L, 44L, 40L, 43L, 7L, 7L, 41L, 42L, 25L, 12L, 42L,
48L, 45L, 36L, 108L, 7L, 46L, 6L, 46L, 45L, 47L, 49L, 48L, 46L,
39L, 38L, 44L, 43L, 47L, 36L, 118L, 127L, 19L, 7L, 36L, 55L,
NA, 26L, 49L, 5L, 7L, 53L, 97L, 108L, 24L, 6L, 42L, 38L, 49L,
36L, 29L, 33L, 47L, 123L, 8L, NA, 113L, 34L, 5L, 121L, 185L,
39L, 18L, 46L, 7L, 44L, 37L, 123L, 113L, 52L, 120L, 130L, 6L,
23L, 24L, 21L, 6L, 33L, 30L, 41L, 36L, 39L, 119L, 40L, 37L, 49L,
7L, 127L, 43L, 45L, 37L, 38L, 150L, 41L, 20L, 43L, 42L, 33L,
24L, 26L, 111L, 19L, NA, 52L, 40L, 23L, 27L, 41L, 27L, 49L, 24L,
22L, 45L, 27L, 41L, 32L, 125L, 120L, 47L, 47L, 28L, 139L, 36L,
41L, 53L, 34L, 52L, 126L, 43L, 44L, 44L, 129L, 42L, 38L, 48L,
41L, 40L, 23L, 42L, 43L, 133L, 36L, 122L, 8L, 19L, 28L, 42L,
19L, 116L, 110L, 42L, 122L, 118L, 112L, 26L, 43L, 51L, 40L, 135L,
130L, 41L, 46L, 8L, 41L, 117L, 124L, 40L, 7L, 9L, 127L, 10L,
NA, 130L, 42L, 38L, 35L, 123L, 20L, 132L, 40L, 158L, 24L, 38L,
43L, 151L, 147L, 10L, 122L, 35L, 39L, 129L, 6L, 36L, 37L, 25L,
146L, 6L, 22L, 49L, 43L, 30L, NA, 42L, 135L, 36L, 126L, 37L,
24L, 27L, 46L, 107L, 44L, 37L, 17L, 52L, 23L, 44L, 128L, 38L,
40L, 115L, 111L, 40L, 40L, 45L, 128L, 35L, 41L, 40L, 42L, 52L,
47L, 28L, 27L, 7L, 19L, 48L, 142L, 41L, 109L, 28L, 44L, 46L,
44L, 22L, 43L, 44L, 43L, 39L, 48L, 43L, 112L, 50L, 131L, 41L,
NA, 126L, 45L, 34L, 24L, 41L, 9L, 125L, 29L, 44L, 160L, 41L,
44L, 39L, 5L, 41L, 31L, 10L, 47L, 94L, 48L, 39L, 24L, 10L, 51L,
41L, 26L, 43L, 116L, 126L, 22L, 6L, 47L, 36L, 109L, 24L, 31L,
41L, 25L, 38L, 16L, 42L, 43L, 45L, 44L, 6L, 11L, 6L, 6L, 28L,
39L, 6L, 47L, 7L, 47L, 140L, 40L, 36L, 11L, 32L, 6L, 112L, 124L,
43L, 12L, 38L, 11L, 143L, NA, 10L, 40L, 38L, 143L, 54L, 138L,
15L, 40L, 11L, 162L, 10L, 50L, 41L, 44L, 6L, 7L, 6L, 6L, 46L,
106L, 155L, 136L, 36L, 38L, 5L, 126L, 47L, 118L, 118L, 134L,
235L, 33L, 200L, 27L, 176L, 40L, 39L, 42L, 7L, 56L, 133L, 34L,
48L, 51L, 38L, 123L, 6L, 46L, 37L, 24L, 48L, 38L, NA, 11L, 43L,
37L, 24L, 34L, 8L, 4L, 6L, 39L, 23L, 44L, 44L, 17L, 6L, 9L, 7L,
41L, 111L, 41L, 44L, 42L, 50L, 41L, 44L, 39L, 31L, 39L, 38L,
132L, 50L, 7L, 130L, 6L, 6L, 49L, 119L, 111L, 26L, 45L, 45L,
39L, 43L, 46L, 106L, 6L, 35L, 6L, 122L, 41L, 43L, 36L, 102L,
48L, 27L, 45L, 35L, 24L, 41L, 48L, 39L, 36L, 19L, 42L, 239L,
42L, 38L, 208L, 31L, 39L, 5L, 121L, 23L, 8L, 132L, 51L, 9L, 39L,
41L, 28L, 137L, 27L, 9L, 36L, 117L, 31L, 10L, 41L, 37L, 36L,
36L, 39L, 29L, 38L, 8L, 34L, 42L, 37L, 43L, 24L, 130L, 19L, 44L,
8L, 125L, 40L, 8L, 25L, 39L, 8L, 145L, 6L, 48L, 7L, 8L, 38L,
41L, 5L, 36L, 7L, 38L, 40L, 12L, 8L, 21L, 38L, 132L, 110L, 39L,
38L, 9L, 9L, 46L, 36L, 42L, 47L, 8L, 118L, 11L, 25L, 36L, 8L,
39L, 48L, 12L, 46L, 40L, 33L, 46L, 37L, 48L, 40L, 9L, 41L, 44L,
38L, 51L, 49L, 54L, 6L, 39L, 46L, 34L, 52L, 39L, 148L, 48L, 58L,
44L, 43L, 41L, 6L, 39L, 113L, 42L, 26L, 37L, 37L, 5L, 40L, 5L,
6L, 55L, 42L, 42L, NA, 36L, 47L, 33L, 107L, 38L, 49L, 56L, 131L,
43L, NA, 38L, 39L, 43L, 36L, 44L, 42L, 45L, 34L, 47L, 131L, 5L,
120L, 48L, 34L, 35L, 46L, 40L, 41L, 41L, 21L, NA, 24L, 108L,
43L, 33L, 51L, 8L, 29L, 43L, 48L, 28L, 39L, 8L, 41L, 36L, 38L,
22L, 38L, 53L, 43L, 128L, 26L, 23L, 10L, 9L, 39L, 34L, 40L, 53L,
31L, 42L, 11L, 43L, 5L, 47L, 41L, 26L, 37L, 122L, 25L, 39L, 235L,
44L, 53L, 7L, 38L, 41L, 49L, 10L, 43L, 42L, 20L, 46L, 9L, 117L,
54L, 8L, 54L, 42L, 14L, 49L, 141L, 38L, 53L, 48L, 56L, 9L, 43L,
40L, 12L, 43L, 8L, 14L, 47L, 7L, 38L, 143L, 46L, 48L, 11L, 52L,
42L, 46L, 44L, 122L, 33L, 57L, 47L, 46L, 42L, 25L, 50L, 45L,
18L, 38L, 6L, 121L, 22L, 48L, 40L, 42L, 7L, 31L, 7L, 49L, 44L,
128L, 41L, 8L, 47L, 36L, 6L, 48L, 45L, 43L, 117L, NA, 40L, 18L,
23L, 46L, 39L, 42L, 38L, 54L, 35L, 10L, 130L, 48L, NA, 10L, 37L,
48L, NA, 8L, 9L, 47L, 10L, 127L, 8L, 6L, 104L, 8L, 38L, 41L,
5L, 44L, 9L, 9L, 10L, NA, 141L, 36L, 124L, 7L, 10L, 49L, 9L,
26L, 9L, 29L, 11L, 51L, 50L, 7L, 8L, 42L, 41L, 5L, 42L, 46L,
52L, 40L, 20L, 160L, 45L, 11L, 37L, 44L, 45L, 28L, 7L, 42L, NA,
36L, 41L, 36L, 29L, 14L, 7L, 42L, 8L, 42L, 11L, 44L, 118L, 6L,
8L, 47L, 44L, 49L, 48L, 52L, 8L, 46L, 122L, 8L, 45L, 118L, 48L,
10L, 53L, 128L, 46L, 26L, 45L, 48L, 46L, 53L, 43L, 6L, 6L, 6L,
43L, 42L, 47L, 48L, 27L, 36L, 53L, 54L, 44L, 53L, 52L, 91L, 47L,
49L, 7L, 7L, 11L, 12L, 27L, 9L, 107L, 115L, 43L, 38L, 34L, 26L,
57L, 129L, 7L, 45L, 11L, 52L, 11L, 50L, 138L, 5L, 45L, 43L, 6L,
42L, 7L, 39L, 5L, 6L, 144L, 44L, 43L, 5L, 58L, 153L, 27L, 24L,
42L, 52L, 36L, 47L, 44L, 43L, 11L, 6L, 146L, 46L, 6L, 43L, 46L,
38L, 48L, 49L, 113L, 34L, 33L, 41L, 26L, 45L, 9L, 52L, 48L, 26L,
11L, 56L, 117L, 8L, 8L, 52L, 16L, 57L, 94L, NA, 130L, 12L, 32L,
44L, 7L, 44L, 49L, 12L, 52L, 143L, 116L, 7L, 123L, 11L, 6L, 52L,
7L, 43L, 122L, 48L, 130L, 74L, 120L, 47L, 10L, NA, 42L, 53L,
44L, 116L, 25L, 39L, 43L, 52L, 43L, NA, 96L, 44L, 128L, 37L,
12L, 26L, 31L, 125L, 13L, 9L, 42L, 9L, 46L, 41L, 73L, 8L, 45L,
45L, 7L, 37L, 45L, 46L, 6L, 24L, 7L, 6L, 45L, 125L, 103L, 18L,
42L, 56L, 45L, 22L, 35L, 5L, 102L, 101L, 77L, 14L, 39L, 8L, 8L,
7L, 51L, 86L, 24L, 91L, 42L, 55L, 76L, 54L, 41L, 8L, 50L, 128L,
11L, 78L, 108L, 19L, 49L, NA, 40L, 7L, 46L, 7L, 7L, 133L, 7L,
61L, 7L, 123L, 125L, 55L, 8L, NA, 25L, 34L, 10L, 12L, 109L, 26L,
43L, 50L, 6L, 67L, 9L, 71L, 55L, 6L, 140L, 94L, 11L, 41L, 6L,
11L, 150L, 33L, 51L, 139L, 37L, 7L, 143L, 22L, 49L, 19L, 6L,
127L, 11L, 47L, 101L, 42L, 66L, 46L, 47L, 17L, 119L, 6L, NA,
11L, 24L, 13L, 40L, 16L, 140L, 21L, 126L, 8L, 15L, 123L, 46L,
45L, 16L, 128L, 91L, 7L, 6L, 56L, 49L, 125L, 46L, 14L, 7L, 16L,
73L, 30L, 49L, 127L, 11L, 113L, 118L, 35L, 26L, 41L, 11L, 29L,
49L, 16L, 46L, 9L, 137L, 35L, 14L, 86L, 151L, 46L, 142L, 24L,
45L, 24L, 8L, 36L, 100L, 19L, 124L, 133L, 47L, 15L, 37L, 8L,
24L, 22L, 31L, 14L, 16L, 54L, 27L, 126L, 133L, 46L, 52L, 24L,
49L, 7L, 10L, 49L, 7L, 24L, 96L, 40L, 28L, 135L, 95L, 48L, 8L,
125L, 139L, 46L, 19L, 17L, 48L, 110L, 45L, 14L, 130L, 8L, 7L,
116L, 120L, 125L, 114L, 9L, 8L, NA, 8L, 19L, 45L, 19L, 104L,
118L, 46L, 47L, 44L, 49L, 11L, 152L, 51L, 46L, 13L, 36L, 10L,
13L, 14L, 118L, 26L, 7L, 52L, 46L, 38L, 53L, 42L, NA, 20L, 111L,
131L, 117L, 20L, 42L, 21L, 122L, 43L, 41L, 31L, 30L, 20L, 118L,
43L, 19L, 11L, 88L, 126L, 44L, 13L, 162L, 14L, 47L, 39L, 135L,
26L, 43L, 7L, 150L, 22L, 48L, 15L, NA, 15L, 47L, 30L, 45L, 46L,
64L, 7L, 40L, 16L, 49L, 134L, 15L, NA, 23L, 7L, 47L, 132L, 46L,
180L, 21L, 17L, 44L, 37L, NA, 127L, 136L, 150L, 29L, 128L, 133L,
43L, 7L, 51L, 48L, 46L, 33L, 19L, 6L, 47L, 30L, 98L, NA, NA,
18L, 122L, 126L, 49L, 7L, 7L, 8L, 49L, 114L, 44L, 121L, 45L,
117L, 9L, 119L, 125L, 9L, 150L, 46L, 54L, 91L, NA, 140L, 30L,
48L, 128L, 45L, 46L, 35L, 41L, 94L, 48L, 50L, 28L, 19L, 47L,
23L, 8L, 32L, 172L, 118L, 130L, 30L, 42L, 27L, 37L, 47L, 135L,
40L, 114L, 47L, 11L, 98L, 52L, 42L, 41L, 7L, 118L, 24L, 47L,
28L, 27L, 18L, 46L, 30L, 123L, 11L, 50L, 19L, 5L, 32L, 45L, 131L,
41L, 36L, 51L, 13L, 76L, 24L, 9L, 108L, 110L, 137L, 25L, 49L,
NA, 168L, 29L, 216L, 31L, 44L, 49L, 46L, 10L, 38L, 52L, 42L,
13L, 46L, 122L, 34L, 38L, 43L, 29L, 7L, 135L, 31L, 117L, 13L,
47L, 8L, 13L, 47L, 53L, 27L, 18L, NA, 132L, 37L, 122L, 134L,
32L, 48L, 53L, 27L, 48L, 11L, 48L, 122L, 99L, 46L, 24L, 34L,
132L, 125L, 15L, 148L, 19L, 128L, 33L, 50L, 124L, 133L, 37L,
123L, 44L, 25L, 121L, 37L, NA, 157L, 125L, 24L, 44L, 48L, 38L,
37L, 41L, 40L, 46L, 33L, 50L, NA, 22L, 34L, 47L, 49L, 38L, 113L,
32L, 34L, 15L, 30L, 15L, 40L, 30L, 45L, 14L, NA, 49L, 21L, 45L,
NA, 171L, 37L, 48L, 146L, 24L, 133L, 208L, 187L, 14L, 37L, 42L,
38L, 7L, 48L, 31L, 8L, 152L, NA, 7L, 14L, 34L, 120L, 7L, 26L,
131L, 120L, 38L, 38L, 22L, 44L, 40L, 38L, 8L, 130L, 34L, 129L,
25L, 31L, 20L, 26L, 185L, 35L, 124L, 127L, 12L, 46L, 8L, 18L,
26L, 10L, 150L, 11L, 28L, 21L, 18L, 147L, 29L, 145L, 30L, 127L,
36L, 45L, 129L, 141L, 128L, 25L, 41L, 24L, 158L, 49L, 148L, 122L,
45L, 14L, 43L, 152L, 42L, 146L, 139L, 37L, 138L, 156L, 50L, 128L,
248L, 7L, 37L, 51L, 45L, 48L, 20L, 43L, 126L, 102L, NA, 36L,
48L, 13L, 130L, 19L, 36L, 36L, 168L, 38L, NA, 43L, 33L, 44L,
180L, 71L, 37L, 151L, 21L, 40L, 51L, 25L, 146L, 48L, 42L, 40L,
18L, 177L, 7L, 38L, 26L, 50L, 32L, 132L, 130L, NA, 118L, 145L,
9L, 40L, 13L, 13L, 43L, 7L, 42L, 149L, 51L, 196L, 132L, 42L,
126L, 37L, 49L, 146L, 48L, 43L, 38L, 13L, 79L, 44L, 137L, 24L,
128L, 43L, 38L, 139L, 13L, 205L, 32L, 34L, 124L, 7L, 7L, 144L,
NA, 138L, 94L, 122L, 24L, 37L, 50L, 20L, 161L, 36L, 30L, 8L,
141L, 37L, 14L, 39L, 39L, 17L, 18L, 55L, 148L, 48L, 28L, 175L,
122L, 146L, 43L, 112L, 41L, 125L, NA, 39L, 130L, 22L, 122L, 33L,
6L, 164L, 7L, 136L, 256L, 6L, 135L, 41L, 33L, 40L, 42L, 119L,
126L, 39L, 44L, 105L, 38L, 43L, NA, 8L, 51L, 36L, 125L, 26L,
25L, 29L, 127L, 23L, 38L, 38L, 39L, 233L, 38L, 40L, 23L, 42L,
43L, 7L, 46L, 53L, 17L, 20L, 150L, 132L, 46L, 131L, 45L, 43L,
25L, 144L, 226L, 34L, 37L, 37L, 184L, 91L, 105L, 207L, 35L, 28L,
26L, 136L, 54L, 46L, 37L, 127L, 38L, 165L, 112L, 151L, 27L, 36L,
188L, 40L, 37L, 47L, 24L, 47L, 37L, 38L, 134L, 126L, 38L, 131L,
151L, 137L, 158L, NA, 37L, 42L, 9L, 40L, 53L, 43L, 40L, 125L,
34L, 25L, 26L, 118L, 34L, 38L, 42L, 35L, 119L, 44L, 36L, 36L,
36L, 134L, 91L, 142L, 129L, 175L, 12L, 33L, 44L, 39L, 31L, 151L,
50L, 122L, 44L, 37L, 161L, 33L, 40L, 25L, 27L, 6L, 123L, 169L,
118L, 38L, 195L, 37L, 28L, 132L, 126L, 38L, 24L, 105L, 33L, 37L,
9L, 23L, 23L, 47L, 37L, 42L, 23L, 9L, 49L, 28L, 103L, 21L, 8L,
42L, 50L, 42L, 31L, 116L, 47L, 10L, 36L, 38L, 29L, 40L, 40L,
48L, 129L, 34L, 33L, 46L, 38L, 37L, 28L, 128L, 38L, 38L, 11L,
37L, 6L, 44L, 123L, 43L, 24L, 31L, 43L, 39L, 42L, 199L, 123L,
125L, 178L, 6L, 152L, 132L, 9L, 52L, 138L, 37L, 98L, 23L, 37L,
37L, 218L, 39L, 100L, 38L, 39L, NA, 121L, 21L, 21L, 13L, 49L,
115L, 17L, 46L, 24L, 33L, 171L, 34L, 124L, 36L, 37L, 158L, 42L,
126L, 37L, 34L, 47L, 120L, 7L, 9L, 38L, 33L, 148L, 37L, 25L,
34L, 36L, NA, 115L, 164L, 36L, 21L, 43L, 31L, 30L, 117L, 129L,
48L, 30L, 37L, 29L, 130L, 22L, 127L, 51L, 8L, 17L, 23L, 37L,
17L, 170L, 46L, 39L, 34L, 34L, 119L, 7L, 44L, 130L, 37L, 33L,
24L, 32L, 7L, 37L, 47L, 28L, 38L, 124L, 38L, 53L, 15L, 36L, 108L,
121L, 32L, 38L, 130L, 44L, 36L, 48L, 129L, 34L, 176L, 25L, 7L,
45L, 4L, 38L, 9L, 144L, 36L, 11L, 172L, 40L, 133L, 45L, 22L,
145L, 48L, 34L, 129L, 96L, 37L, 36L, 150L, 20L, 40L, 110L, 114L,
39L, 94L, 121L, 41L, 30L, 37L, 47L, 49L, 162L, 123L, 37L, 53L,
46L, 33L, 36L, 24L, 50L, 40L, 148L, 34L, 22L, 33L, 178L, 34L,
22L, 40L, 101L, 10L, 119L, 27L, 31L, 115L, 132L, 43L, 112L, 21L,
37L, 37L, 135L, 37L, 43L, 36L, 11L, 45L, 28L, 45L, 39L, 32L,
7L, 122L, 25L, 44L, 7L, 37L, 36L, NA, 38L, 37L, 10L, 8L, 7L,
21L, 46L, 20L, 41L, 42L, 113L, 27L, 9L, 107L, 28L, 41L, 116L,
144L, 42L, 124L, 141L, 37L, 39L, 140L, 37L, 119L, 10L, 49L, NA,
10L, 40L, 7L, 8L, 48L, 49L, 132L, 10L, 40L, 49L, 43L, 164L, 53L,
122L, 30L, 34L, 124L, 7L, 8L, 33L, 45L, 116L, 43L, 259L, 241L,
48L, 40L, 46L, 96L, 53L, 8L, 40L, 34L, 7L, 41L, 39L, 120L, 33L,
46L, 37L, 46L, 44L, 41L, 33L, 47L, 51L, 45L, 37L, 100L, 38L,
52L, 8L, 36L, 135L, 32L, 38L, 36L, 33L, 37L, 122L, 33L, 37L,
NA, 43L, 118L, 38L, 11L, 19L, 23L, 44L, 40L, 40L, 54L, 136L,
11L, 122L, 52L, 12L, 133L, 46L, 47L, 131L, 51L, 128L, 54L, 126L,
24L, 41L, 41L, 44L, 44L, 47L, 48L, 36L, 141L, 51L, 138L, 39L,
42L, 34L, 50L, 46L, 43L, NA, 125L, 115L, 38L, 43L, 52L, 38L,
52L, 182L, 138L, 128L, 52L, 14L, 11L, 42L, 56L, 46L, 40L, 41L,
44L, 48L, 40L, 136L, 101L, 41L, 136L, 122L, NA, 47L, NA, 128L,
33L, 24L, 51L, 14L, 21L, 130L, 205L, 58L, 121L, NA, 7L, 46L,
58L, 48L, 44L, 130L, 49L, 45L, 9L, 114L, 134L, 95L, 138L, 11L,
115L, 44L, 42L, 8L, 135L, 40L, 42L, 14L, 127L, 56L, 217L, 47L,
42L, 31L, 250L, 127L, 17L, 41L, 42L, 51L, 109L, 63L, 42L, 43L,
52L, 13L, 15L, 22L, 39L, 17L, 128L, 157L, 125L, 41L, 43L, 16L,
49L, 36L, 53L, 51L, 7L, 48L, 47L, 47L, 132L, 43L, 48L, 46L, 130L,
17L, 25L, 51L, 52L, 104L, 119L, 59L, 46L, 38L, 50L, 41L, 45L,
42L, 40L, 39L, 41L, 54L, 26L, 44L, 26L, 11L, 36L, 38L, 40L, 47L,
44L, 117L, 38L, 120L, 110L, 11L, 38L, 40L, 47L, 45L, 41L, 33L,
54L, 17L, 59L, 51L, 26L, 49L, 13L, 13L, 41L, 126L, 49L, 38L,
28L, 51L, 56L, 41L, 48L, 47L, 220L, 49L, 49L, 17L, 44L, 20L,
46L, 38L, 67L, 43L, 125L, 44L, 47L, 27L, 122L, 42L, 63L, 9L,
47L, 25L, 60L, 123L, 33L, 44L, 43L, 133L, 51L, 46L, 25L, 50L,
16L, 11L, 17L, 45L, 54L, 14L, 47L, 45L, 39L, 51L, 56L, 133L,
40L, 47L, 126L, 52L, 48L, 51L, 56L, 120L, 46L, 56L, 45L, 23L,
46L, 45L, 48L, 55L, 43L, 18L, 46L, 49L, 33L, 47L, 43L, 53L, 44L,
36L, 42L, 38L, 43L, NA, 18L, 195L, 29L, 43L, 15L, 44L, 129L,
24L, 119L, 18L, 24L, 50L, 50L, 21L, 18L, 43L, 12L, 36L, 24L,
130L, 94L, 23L, 20L, 117L, 43L, 49L, 21L, 98L, 24L, 9L, 24L,
45L, 9L, 39L, NA, 44L, 9L, 42L, 25L, 32L, 34L, 121L, 19L, 22L,
18L, 23L, 33L, 26L, 55L, 142L, 224L, 56L, 24L, 43L, 7L, 45L,
29L, 28L, 19L, 134L, 43L, 44L, 125L, 48L, 16L, 49L, 49L, 29L,
28L, 27L, 20L, 44L, 25L, 32L, NA, 29L, 39L, 26L, NA, NA, 47L,
10L, 28L, 33L, 33L, 115L, 45L, 126L, 45L, 43L, NA, 23L, 24L,
116L, 8L, 9L, 216L, 40L, 24L, 33L, 11L, 19L, 34L, 46L, 31L, 29L,
38L, NA, 46L, 36L, 45L, 51L, 18L, 12L, 42L, 20L, 37L, 41L, 38L,
57L, 11L, 41L, 45L, 57L, 13L, 59L, 19L, 26L, 37L, 135L, 118L,
17L, 50L, 10L, 130L, 24L, 15L, 46L, 19L, 50L, 38L, 14L, 44L,
34L, 50L, 38L, 27L, 10L, 20L, 50L, 38L, 35L, 26L, 12L, 23L, 49L,
14L, 18L, NA, 198L, 42L, 13L, NA, 132L, 35L, 28L, 38L, 11L, 43L,
46L, 105L, 37L, 40L, 139L, 47L, 32L, 22L, 48L, 123L, 46L, 41L,
22L, 118L, 11L, 107L, 39L, 22L, 93L, 166L, 123L, 25L, 52L, 16L,
9L, 140L, 21L, 39L, 17L, NA, 28L, 54L, 132L, 206L, 40L, 46L,
39L, 40L, 30L, 11L, 26L, NA, NA, NA, 15L, 32L, 23L, 135L, 17L,
NA, 23L, 15L, 42L, 160L, 23L, 121L, 39L, 39L, 43L, 43L, 38L,
12L, 21L, 7L, 195L, 22L, 20L, 143L, 135L, 15L, 12L, 26L, 42L,
24L, 41L, 39L, 38L, 15L, 44L, 109L, 31L, 108L, 39L, 11L, NA,
43L, 21L, 14L, 37L, 43L, 48L, 55L, 45L, 28L, NA, 43L, 211L, 51L,
45L, 37L, 131L, 29L, 40L, 35L, 216L, 54L, 33L, 52L, 43L, 35L,
151L, 45L, 36L, 49L, 45L, 40L, 186L, 37L, 146L, 11L, 42L, 29L,
44L, 8L, 54L, 28L, 35L, 40L, 43L, 45L, 25L, 36L, 41L, 16L, 47L,
22L, 115L, 147L, 15L, 34L, 39L, NA, 45L, 41L, 41L, 127L, 49L,
17L, 15L, 40L, 37L, 23L, 19L, 44L, 42L, 140L, 25L, 18L, NA, 40L,
90L, 52L, 15L, 40L, NA, 39L, 41L, NA, 34L, 222L, 40L, 46L, 28L,
34L, 65L, 40L, 44L, NA, 55L, NA, 28L, 38L, 28L, 13L, 47L, 38L,
49L, 49L, 45L, 33L, 35L, 46L, 40L, 25L, 38L, NA, 39L, 35L, 38L,
40L, 173L, 22L, 44L, 47L, 39L, 40L, 43L, 35L, 130L, 37L, 30L,
39L, 47L, 48L, 35L, 36L, 47L, 12L, 26L, 11L, 42L, 12L, 41L, 38L,
39L, 25L, 42L, 28L, 39L, 35L, 41L, 42L, 36L, 44L, 40L, 23L, 42L,
25L, 15L, 152L, 46L, 20L, NA, 24L, 8L, 23L, 52L, 135L, 25L, 44L,
47L, 38L, 36L, 39L, 30L, 40L, 29L, 38L, 98L, 48L, 42L, 46L, 30L,
39L, 40L, 34L, 26L, 38L, 138L, 40L, 33L, 40L, 18L, 46L, 43L,
46L, 36L, 46L, 22L, 40L, NA, 40L, 42L, 33L, 39L, 49L, 16L, 35L,
15L, 42L, 38L, 30L, 44L, 38L, 126L, 36L, 37L, 16L, 39L, 42L,
9L, NA, 40L, 21L, 48L, 45L, 61L, 45L, 46L, 54L, 46L, 41L, 45L,
44L, 46L, 50L, 49L, 51L, 32L, 51L, 17L, 46L, 40L, 16L, 47L, 54L,
64L, 60L, 46L, 52L, 51L, 16L, 34L, 20L, NA, 28L, 30L, 33L, 51L,
27L, 38L, 42L, 56L, 35L, 142L, 32L, 36L, 38L, 33L, 21L, 46L,
34L, 25L, 33L, 32L, 40L, 30L, 19L, 14L, 35L, 35L, 20L, 33L, 33L,
20L, 44L, 16L, 34L, 45L, 45L, 33L, 51L, 35L, 21L, 4L, 16L, 48L,
40L, 4L, 48L, 35L, 45L, 38L, 4L, 45L, 12L, 5L, 32L, 30L, 41L,
37L, 33L, 32L, 20L, 18L, 19L, 7L, 30L, 37L, 48L, 39L, 44L, 30L,
45L, 43L, 39L, 51L, 4L, 44L, 35L, 41L, 37L, 41L, 35L, 37L, 36L,
22L, 23L, 34L, 38L, 31L, 43L, 32L, 55L, 39L, 27L, 39L, 20L, 31L,
34L, 40L, 20L, 39L, 36L, 35L, 39L, 4L, 34L, 37L, 8L, 22L, 36L,
16L, NA, 40L, 16L, 33L, 48L, 36L, 33L, 37L, 34L, 5L, 38L, 30L,
37L, 25L, 32L, 33L, 47L, NA, 44L, 41L, NA, 20L, 30L, 43L, 38L,
39L, 55L, 39L, 48L, NA, 106L, 30L, 33L, 31L, 36L, 30L, 50L, 39L,
35L, 41L, 31L, 42L, 48L, 44L, 48L, 38L, 4L, 52L, 30L, 147L, 44L,
32L, 7L, 40L, 37L, 43L, 36L, 36L, 31L, 33L, 33L, NA, 33L, 5L,
36L, 31L, 37L, 38L, 33L, 30L, 40L, 45L, 40L, 40L, 4L, 39L, NA,
38L, 41L, 52L, 43L, 43L, 30L, 36L, 49L, 6L, 5L, 41L, 42L, 32L,
41L, 38L, 33L, 47L, 40L, 38L, 53L, 34L, NA, 40L, NA, 42L, 35L,
5L, 42L, 47L, 45L, 42L, 43L, 41L, 39L, 23L, 43L, 27L, 42L, 37L,
120L, 36L, 81L, 39L, 40L, 33L, 44L, 36L, 39L, 26L, 141L, 36L,
45L, 33L, NA, 150L, 35L, 44L, 16L, 5L, 39L, 51L, 33L, 37L, 41L,
42L, 19L, 36L, 19L, 51L, 33L, 36L, 46L, 36L, 35L, 32L, 33L, 18L,
11L, 34L, 44L, 29L, 10L, 59L, 7L, 49L, 41L, 38L, 33L, 43L, 37L,
32L, 50L, 40L, 43L, 37L, 43L, 41L, 33L, 17L, 46L, 42L, 34L, NA,
31L, 50L, 35L, 35L, 44L, 47L, 20L, 44L, 14L, 17L, 43L, 34L, 54L,
38L, 39L, 43L, 43L, 38L, 40L, 42L, 40L, NA, 16L, 34L, 43L, 47L,
22L, 45L, 47L, 21L, 21L, 20L, 46L, NA, 5L, 45L, 33L, 15L, 42L,
153L, 40L, 26L, 125L, 48L, 16L, 32L, 38L, 49L, 12L, 48L, 42L,
18L, 15L, 154L, 33L, 11L, 41L, 45L, 37L, 96L, 104L, 39L, 33L,
43L, 41L, 43L, 40L, 5L, 39L, 40L, 43L, 42L, 27L, 4L, 49L, 40L,
50L, 46L, 37L, 39L, 24L, 37L, 43L, 37L, 43L, 41L, 28L, 9L, 40L,
26L, 52L, 47L, 51L, 50L, 53L, 145L, 48L, 46L, 47L, 30L, 48L,
46L, 63L, 47L, 36L, 25L, 51L, NA, 35L, 46L, NA, 50L, 127L, 52L,
55L, 45L, 41L, 14L, 38L, 48L, 49L, 128L, 45L, 37L, 43L, 39L,
44L, 138L, 43L, 39L, 16L, 51L, 47L, 43L, 49L, 16L, 21L, 48L,
33L, 31L, 21L, 24L, 50L, 35L, 46L, NA, 46L, 49L, 29L, 46L, 50L,
42L, 134L, 20L, 43L, 48L, 47L, 45L, 47L, 60L, 47L, 29L, 51L,
55L, 49L, 31L, 59L, 46L, 53L, 41L, 15L, 52L, 54L, 37L, 27L, 44L,
42L, 48L, 47L, 38L, 45L, 60L, 39L, 28L, 43L, NA, 24L, 39L, 50L,
5L, NA, 46L, 50L, 46L, 49L, 27L, 6L, 45L, 53L, 56L, 46L, 44L,
51L, 63L, 19L, 44L, 142L, 27L, 32L, 40L, 35L, 49L, 21L, 51L,
54L, 53L, 50L, 67L, 47L, 54L, 12L, 147L, 52L, 54L, 133L, 25L,
10L, 47L, 21L, 44L, 44L, 46L, 53L, 62L, 41L, 103L, 19L, 40L,
39L, 37L, 44L, 40L, 41L, 44L, 29L, 29L, 48L, 139L, 25L, 8L, 30L,
106L, 135L, 48L, 67L, 43L, 42L, 48L, 57L, 21L, 33L, 41L, 39L,
55L, 44L, 46L, 37L, 100L, 12L, 157L, 36L, 43L, 43L, 40L, 102L,
22L, 46L, 52L, 46L, 43L, 43L, 73L, 19L, 38L, 20L, 39L, 52L, 7L,
52L, 68L, 51L, 50L, 47L, 46L, 50L, 46L, 46L, 46L, 47L, 20L, 53L,
44L, 53L, 43L, 43L, 27L, 59L, 39L, 47L, 44L, 52L, 120L, 40L,
45L, 40L, 45L, 43L, 27L, 39L, 46L, 17L, 52L, 51L, 40L, 60L, 35L,
42L, 116L, 44L, 44L, NA, 12L, 17L, 6L, 58L, 190L, 34L, 40L, 14L,
44L, 24L, 43L, 49L, 43L, 46L, 51L, 6L, 45L, 35L, 45L, 29L, 13L,
19L, 46L, 50L, 136L, 34L, 44L, 36L, 33L, 34L, 33L, 12L, 47L,
NA, 40L, 29L, 46L, NA, 5L, 46L, 39L, 11L, 118L, 27L, 33L, 131L,
NA, 86L, 44L, 17L, 39L, 107L, 14L, 48L, 29L, 41L, 42L, 22L, 4L,
157L, 111L, 17L, 40L, 139L, 47L, 43L, 38L, 12L, 37L, NA, 40L,
28L, 8L, 166L, 10L, 50L, 41L, 41L, 29L, 46L, 45L, 53L, 51L, 183L,
36L, 9L, 42L, 47L, 32L, 34L, 40L, 42L, 51L, 51L, 46L, 27L, 41L,
NA, 36L, 48L, 85L, NA, 49L, 44L, 43L, NA, 95L, 44L, NA, 19L,
39L, 30L, NA, 33L, 42L, 6L, 37L, 84L, 47L, 12L, 40L, 115L, 40L,
NA, 19L, 14L, 19L, 27L, 128L, 54L, 76L, 15L, 40L, 53L, 120L,
43L, 123L, 47L, 40L, 10L, 69L, 47L, 52L, 157L, 126L, 50L, 30L,
52L, 40L, 44L, NA, 111L, 123L, 45L, 11L, 49L, 40L, 56L, 40L,
44L, 24L, 24L, 37L, 54L, 31L, 50L, 20L, 38L, 50L, 12L, 51L, 22L,
47L, 20L, 50L, 44L, 44L, 40L, 45L, 43L, 43L, 26L, 34L, 50L, 18L,
40L, 177L, 11L, NA, 24L, 39L, 14L, 137L, 45L, 34L, 38L, 119L,
44L, 23L, 125L, NA, 15L, 43L, 132L, 45L, 41L, NA, 46L, 40L, 47L,
17L, 54L, 113L, 37L, 106L, 138L, 91L, 44L, 40L, 32L, NA, 42L,
44L, 46L, 56L, 16L, 186L, 46L, 140L, 166L, 36L, 40L, 33L, 21L,
31L, 94L, 174L, 30L, 124L, 42L, 11L, 42L, 50L, 44L, 40L, 25L,
52L, 38L, 50L, 49L, 14L, 28L, 50L, 46L, 48L, 181L, 16L, 35L,
34L, 25L, 35L, 56L, 46L, 55L, 101L, NA, 43L, 50L, 48L, 139L,
34L, 46L, 52L, 46L, 20L, 42L, 46L, 113L, 28L, NA, NA, 51L, 165L,
62L, NA, 33L, 131L, 14L, 51L, 44L, 48L, 44L, 48L, 53L, 47L, 18L,
25L, 157L, 44L, 24L, NA, 33L, 45L, 42L, 129L, 130L, 150L, 140L,
49L, 43L, 49L, 54L, 50L, 18L, 54L, 49L, 42L, 45L, 28L, 44L, 15L,
121L, 38L, 98L, 29L, 39L, 106L, 46L, 47L, 46L, 22L, 49L, 17L,
41L, 46L, 32L, 39L, NA, 50L, 44L, 16L, 56L, 17L, 38L, 57L, 54L,
155L, 46L, 40L, 50L, 41L, 24L, 51L, 36L, 20L, 26L, 38L, 43L,
48L, 17L, 40L, 22L, 53L, 30L, 44L, NA, 162L, NA, 59L, 38L, 34L,
54L, 46L, 34L, 20L, 48L, NA, 126L, 11L, 168L, 22L, 46L, NA, 53L,
44L, 49L, 46L, 36L, NA, 37L, 136L, 18L, 16L, 15L, 28L, 37L, 130L,
40L, 24L, 39L, 50L, 43L, 28L, 42L, 59L, 135L, 41L, 48L, 53L,
48L, 46L, 38L, 54L, NA, 42L, 43L, 52L, 47L, 52L, 52L, 117L, 10L,
43L, 49L, NA, 25L, 28L, 40L, 50L, 22L, 16L, 125L, 44L, 152L,
46L, 40L, 50L, 20L, 36L, 23L, 49L, 49L, 19L, 24L, 51L, 46L, 178L,
50L, 9L, 42L, 44L, 15L, 40L, NA, 36L, 29L, 42L, 39L, 21L, 13L,
40L, 22L, 40L, 26L, 40L, 119L, 55L, 23L, 48L, 42L, 46L, 23L,
42L, 37L, 37L, 50L, 28L, 20L, 47L, 11L, 41L, 39L, NA, 49L, 122L,
162L, 18L, 102L, 45L, 39L, 13L, NA, 57L, 36L, 48L, 47L, 18L,
58L, 59L, 42L, 44L, 123L, NA, 49L, 38L, 32L, 46L, 19L, NA, 48L,
45L, 25L, 18L, 136L, NA, 42L, 41L, 119L, 26L, 145L, 40L, 48L,
138L, 136L, 51L, 50L, 25L, 37L, 125L, 44L, 42L, 30L, 152L, 26L,
45L, NA, 28L, 44L, 40L, 128L, NA, 35L, 45L, 47L, 41L, 35L, 28L,
123L, 51L, 148L, 42L, 52L, 32L, 20L, 41L, 35L, 26L, 42L, 21L,
19L, 122L, 52L, 192L, 17L, 19L, 48L, 9L, 46L, 41L, 38L, 43L,
NA, 36L, 30L, 43L, 39L, NA, NA, 14L, 25L, 46L, 46L, 39L, 39L,
NA, NA, 48L, 21L, 37L, 50L, 129L, 39L, 42L, 51L, 38L, 52L, 118L,
40L, 50L, 38L, 41L, 40L, 34L, NA, 168L, 50L, 16L, 43L, 43L, 146L,
46L, 12L, 37L, 43L, 41L, 19L, 37L, 34L, 44L, 20L, NA, 53L, 46L,
25L, 48L, 41L, 53L, 142L, 42L, 22L, 47L, 51L, 108L, 132L, 54L,
NA, 43L, 10L, 42L, 132L, 41L, 43L, 42L, 120L, 30L, 43L, 40L,
46L, 39L, 126L, 43L, 11L, 59L, 43L, 19L, 9L, 44L, 41L, 46L, 45L,
11L, 30L, 41L, 50L, NA, 130L, 40L, 17L, 125L, 46L, 29L, 47L,
8L, 32L, 21L, 120L, 21L, 40L, 20L, 22L, 38L, 38L, NA, 55L, 44L,
20L, 37L, 39L, 126L, 48L, 19L, 36L, 37L, 47L, 42L, NA, 30L, 40L,
46L, 10L, 13L, 23L, 39L, 45L, 46L, 38L, 7L, NA, 23L, 19L, 19L,
48L, NA, 46L, 26L, 39L, 51L, 9L, 45L, 34L, 42L, 18L, 38L, 52L,
51L, 38L, 13L, 53L, 174L, 22L, 10L, 9L, 20L, 51L, 34L, 9L, 40L,
43L, 8L, 24L, 43L, 44L, 32L, 47L, 150L, 51L, 44L, 126L, 37L,
44L, NA, 37L, 11L, 25L, 39L, 42L, 47L, 26L, 54L, 41L, 9L, 42L,
148L, 45L, 47L, 10L, 40L, 225L, 43L, 9L, 130L, 155L, NA, 6L,
153L, 55L, 42L, 43L, 40L, 42L, 48L, NA, 45L, 50L, 50L, 48L, 22L,
38L, 39L, 30L, 44L, 129L, 42L, 29L, 39L, 19L, 16L, 56L, 38L,
19L, 120L, 52L, 40L, 45L, 121L, NA, 44L, 160L, 9L, 34L, 39L,
41L, 56L, NA, 40L, 49L, 18L, 47L, 119L, 56L, 11L, 9L, 170L, 52L,
48L, 10L, 46L, 10L, 38L, 26L, 130L, 52L, 48L, NA, 37L, 31L, 25L,
39L, 47L, NA, 34L, 46L, 41L, 43L, 53L, 49L, 45L, NA, 49L, 39L,
23L, 51L, 27L, 54L, 51L, 188L, NA, 23L, 19L, 52L, 37L, 45L, 9L,
53L, 48L, 37L, 59L, 49L, 55L, 20L, 39L, 185L, 12L, 10L, 44L,
NA, 44L, 126L, 42L, 52L, NA, 40L, 45L, 15L, 131L, 54L, 48L, 47L,
46L, 7L, 116L, 173L, 156L, 48L, 49L, 44L, 48L, 68L, 11L, 9L,
38L, NA, 130L, 10L, 19L, 38L, 56L, 19L, 46L, 124L, 41L, 131L,
42L, 147L, 10L, 43L, 50L, 51L, 240L, 45L, 10L, 134L, NA, 43L,
47L, 24L, 22L, 40L, 12L, 49L, 52L, 43L, 55L, 18L, 39L, 120L,
45L, 48L, 10L, 10L, 40L, 57L, 52L, 180L, 52L, 21L, NA, 30L, 42L,
38L, 47L, 48L, 53L, 27L, 192L, 43L, 99L, 54L, 46L, 42L, 27L,
125L, 17L, 53L, 47L, 120L, 130L, 57L, 41L, 150L, 26L, 58L, 42L,
42L, NA, NA, 26L, 42L, 39L, 74L, 176L, 34L, 50L, 102L, 157L,
125L, 52L, 46L, 48L, 22L, 42L, 41L, 54L, 49L, 49L, 135L, 49L,
NA, NA, 125L, 43L, 45L, 129L, 24L, 124L, 52L, 44L, 52L, 19L,
15L, 51L, 125L, 26L, 45L, 49L, 42L, 40L, 26L, 17L, 45L, 46L,
91L, 45L, 44L, 39L, 29L, 98L, 26L, 44L, 39L, 118L, 10L, 205L,
18L, 48L, 39L, 33L, 21L, 26L, 52L, 50L, 37L, 50L, 11L, 46L, 13L,
26L, 16L, 50L, 22L, 13L, 37L, 29L, 52L, 52L, 50L, 33L, 180L,
53L, NA, NA, 42L, 45L, 46L, 42L, 21L, NA, 23L, 43L, 23L, 15L,
114L, 44L, 11L, 50L, 115L, 144L, 123L, NA, 163L, 59L, 82L, 134L,
138L, 43L, NA, 45L, 46L, 128L, 50L, NA, 121L, 46L, 52L, 43L,
19L, 20L, 37L, 43L, 84L, 129L, 21L, 103L, 43L, 21L, 152L, 38L,
NA, 44L, NA, 123L, 39L, 198L, 45L, 47L, 9L, 24L, 46L, NA, 7L,
20L, 47L, 9L, 18L, 138L, 49L, 32L, 50L, 26L, 38L, 185L, 119L,
41L, 42L, 19L, 35L, 19L, 52L, 61L, 40L, 27L, 68L, 36L, 24L, 50L,
55L, 44L, NA, 98L, 23L, 19L, 36L, 23L, 26L, 52L, 43L, 183L, 24L,
43L, 45L, 41L, 46L, 182L, 40L, 47L, 44L, 174L, 18L, 52L, 58L,
14L, 42L, 123L, 49L, 121L, 47L, 47L, 59L, 50L, 10L, 36L, 16L,
41L, 22L, 45L, 23L, NA, 152L, 53L, 39L, 129L, 110L, 116L, 48L,
42L, 29L, 11L, 32L, 46L, 10L, 46L, NA, 57L, 14L, 45L, 21L, NA,
44L, 227L, 45L, 43L, 48L, NA, 18L, 46L, 50L, 45L, 37L, 39L, NA,
10L, 45L, 11L, 123L, 23L, 42L, 22L, 36L, 42L, NA, 188L, 134L,
44L, 48L, 55L, NA, 34L, 50L, 30L, 54L, 7L, 53L, 214L, 41L, 14L,
35L, 20L, 9L, 70L, NA, 45L, 39L, NA, 17L, 54L, 43L, 42L, 26L,
64L, 12L, 50L, 24L, 48L, 47L, 12L, 46L, 52L, 29L, 53L, 29L, 182L,
40L, 51L, 157L, 43L, 46L, 24L, 13L, 44L, 8L, 11L, 45L, 58L, 113L,
42L, 45L, 45L, 125L, 184L, 24L, 134L, 16L, 35L, 40L, 49L, 129L,
44L, NA, 17L, 43L, 30L, 36L, 10L, 30L, 41L, 35L, 20L, 16L, 47L,
44L, 30L, 29L, 44L, 156L, NA, 41L, 48L, 50L, 47L, 41L, 10L, 126L,
101L, 180L, 44L, NA, 49L, 48L, 55L, 43L, 46L, 32L, 184L, 47L,
80L, 44L, 41L, 30L, 60L, 51L, 116L, 56L, 42L, NA, NA, 46L, NA,
63L, 50L, 34L, 150L, 46L, 94L, 18L, NA, 28L, 66L, 31L, 18L, 130L,
98L, 40L, NA, 27L, 45L, 42L, NA, 49L, 48L, 45L, 40L, 47L, 45L,
49L, NA, 51L, 50L, 46L, 55L, 44L, 27L, 49L, 44L, 17L, 21L, 25L,
42L, 42L, 9L, 44L, 50L, 46L, 40L, 20L, 53L, 44L, 52L, 26L, 35L,
44L, 20L, 196L, 49L, NA, 23L, 44L, NA, 42L, 20L, NA, 31L, 131L,
46L, 52L, 30L, 137L, 50L, 46L, 172L, NA, 21L, 22L, 45L, 151L,
46L, 48L, 45L, 128L, 39L, 26L, NA, 45L, NA, 49L, 17L, 41L, 118L,
118L, 45L, 55L, NA, 150L, 46L, 43L, 127L, 54L, 202L, 51L, 135L,
47L, 17L, 20L, 47L, 42L, 46L, 177L, 23L, 21L, 49L, NA, 34L, 43L,
41L, 35L, 55L, 48L, 45L, NA, NA, 25L, 54L, 46L, 63L, NA, 31L,
54L, 183L, 32L, 47L, 49L, 26L, 46L, 142L, 45L, 21L, NA, 31L,
53L, 12L, 102L, 134L, 62L, 53L, 27L, 51L, 180L, 40L, 131L, 14L,
148L, 43L, 94L, 20L, 49L, 20L, 46L, 41L, 49L, 124L, 42L, 22L,
42L, 50L, 49L, 37L, 22L, 24L, 176L, 51L, 51L, 221L, 136L, 43L,
48L, 45L, 32L, 43L, 36L, 25L, 49L, 48L, 42L, 27L, 49L, 46L, 41L,
38L, 42L, 26L, 12L, 11L, 36L, 34L, 37L, 21L, 48L, 35L, 51L, 49L,
45L, 51L, 24L, 49L, 52L, 26L, 29L, 44L, 38L, 18L, 43L, 33L, 167L,
40L, 10L, 36L, 44L, 69L, 29L, 54L, 46L, 24L, 37L, 49L, 46L, NA,
62L, 49L, 22L, 49L, 34L, 48L, 48L, 133L, 117L, 141L, 170L, 48L,
52L, 32L, 18L, NA, 33L, 31L, 47L, 47L, 56L, 42L, 21L, 144L, 37L,
47L, 11L, 18L, 135L, 37L, 32L, 20L, 56L, 31L, 63L, 50L, 14L,
28L, 62L, 130L, 130L, 9L, 53L, 44L, 44L, 144L, 56L, 45L, 20L,
50L, 40L, 40L, 32L, 44L, 25L, 42L, 47L, 36L, 48L, 43L, 49L, 42L,
25L, 43L, NA, 41L, 12L, 35L, 210L, 41L, 52L, 29L, 54L, 30L, 43L,
25L, 43L, 13L, 55L, 44L, 38L, 24L, 42L, 43L, 51L, 51L, 42L, 24L,
204L, 216L, 37L, NA, 25L, NA, 50L, 48L, 12L, 42L, 50L, 51L, 30L,
22L, 37L, 44L, 9L, 27L, 177L, 25L, 25L, 143L, 39L, 58L, 51L,
165L, 135L, 44L, 54L, 164L, 40L, 138L, 24L, 51L, 159L, 49L, 39L,
45L, 52L, 39L, 25L, 37L, 9L, 14L, 48L, 40L, 54L, 142L, 23L, 56L,
46L, 13L, 38L, 10L, 32L, 145L, 28L, 22L, 47L, 29L, 23L, 44L,
24L, 52L, 58L, 12L, 47L, 11L, 45L, NA, 38L, 49L, 25L, 11L, 41L,
7L, 32L, 38L, 43L, 24L, 10L, 25L, 39L, 164L, 48L, 43L, 27L, 14L,
12L, 9L, 11L, 15L, 9L, 26L, 8L, 26L, 47L, 80L, 36L, 44L, 25L,
39L, 52L, 45L, 35L, 39L, 39L, 6L, 184L, 75L, 39L, 38L, 11L, 51L,
12L, 43L, 18L, 56L, 49L, 57L, 58L, 28L, 12L, 202L, NA, 43L, 40L,
12L, 10L, 13L, 45L, 51L, 39L, 26L, 11L, 59L, 54L, 50L, 52L, 16L,
43L, 53L, 10L, 24L, 45L, 54L, 136L, 47L, 28L, 148L, 46L, 31L,
43L, NA, 12L, 9L, 50L, 10L, 87L, NA, 29L, 41L, NA, 117L, NA,
46L, 148L, 51L, 37L, NA, NA, 44L, 23L, 46L, NA, 126L, NA, 47L,
37L, 22L, 39L, 48L, 36L, 13L, 48L, 50L, 59L, 152L, 45L, 253L,
59L, 37L, 40L, 136L, 24L, 39L, 21L, 54L, 9L, 46L, 19L, 32L, 19L,
20L, 46L, 8L, 41L, 45L, 41L, 50L, 11L, 29L, 52L, 46L, 12L, 13L,
49L, 11L, 14L, 10L, 42L, 10L, 9L, 28L, 11L, 46L, 30L, 11L, 25L,
31L, 9L, 46L, 26L, 50L, 25L, 31L, 46L, 27L, 54L, 55L, 47L, 57L,
58L, 10L, 46L, 44L, 46L, 42L, 58L, 11L, 9L, 32L, 10L, 14L, 40L,
41L, NA, 48L, 115L, 31L, 52L, 46L, 39L, 27L, 52L, 56L, 54L, 204L,
41L, 53L, 45L, 51L, 9L, 47L, 176L, 52L, 9L, 46L, 38L, 48L, 115L,
57L, 42L, 49L, 57L, 10L, 55L, 10L, 131L, 9L, 42L, 10L, 45L, 129L,
167L, 31L, 62L, 28L, 50L, 48L, 25L, 49L, 33L, 127L, 11L, 39L,
45L, 48L, 48L, 39L, 144L, 24L, 40L, 11L, 178L, 57L, 40L, 49L,
10L, NA, 128L, 40L, 17L, 170L, 46L, 42L, 128L, 52L, 27L, 129L,
55L, 9L, 12L, 27L, 38L, 27L, 51L, 46L, 47L, 259L, 27L, 57L, 43L,
12L, 11L, 30L, 12L, 43L, 46L, 49L, 12L, 11L, 26L, 52L, 28L, 49L,
46L, 27L, 196L, NA, 52L, 58L, NA, 56L, 162L, 66L, 57L, 41L, 12L,
46L, 25L, 46L, 47L, 52L, 11L, 47L, 24L, 47L, 50L, 33L, 57L, 51L,
11L, 46L, 38L, 26L, 11L, 210L, NA, 55L, 11L, 11L, 47L, 49L, 128L,
41L, 55L, 25L, 50L, 47L, 12L, 54L, 37L, 12L, 26L, 24L, 124L,
43L, 10L, 42L, 49L, 62L, 46L, 44L, 42L, 42L, 11L, 135L, 13L,
48L, 56L, 94L, 45L, 13L, 49L, 19L, 36L, 199L, 52L, 9L, 66L, 38L,
144L, 24L, 137L, 49L, 164L, 156L, 46L, NA, 39L, 10L, 57L, 50L,
46L, 42L, 25L, 32L, 48L, NA, 36L, 131L, 25L, 26L, 41L, 99L, 142L,
73L, 125L, 126L, 16L, 21L, 48L, 21L, 22L, 26L, 42L, 27L, NA,
53L, 32L, 19L, NA, NA, 50L, 260L, 59L, 25L, 40L, 52L, 31L, 46L,
10L, 29L, 22L, 27L, 44L, 24L, 11L, 148L, 42L, 42L, 22L, 50L,
55L, 234L, 16L, 59L, 17L, 49L, 46L, 15L, 49L, 46L, 13L, 11L,
27L, 57L, 18L, 18L, 15L, NA, NA, 211L, 45L, 49L, 58L, 45L, 17L,
48L, 48L, 30L, 36L, 53L, 46L, 42L, 44L, NA, 41L, 12L, 50L, 50L,
13L, 50L, 56L, 52L, 126L, 53L, 56L, NA, 171L, 54L, 43L, 24L,
69L, 29L, 30L, 46L, 14L, 79L, 33L, 21L, NA, 31L, 62L, 56L, 157L,
49L, 20L, 134L, 54L, 79L, 117L, 69L, 18L, 49L, 50L, NA, 44L,
46L, 127L, 12L, 150L, 50L, 63L, 136L, 42L, 58L, 53L, 72L, 26L,
137L, 19L, 40L, 152L, 21L, 50L, 17L, 14L, 47L, 102L, 23L, 247L,
18L, 21L, 28L, 47L, 49L, 139L, 48L, 270L, 45L, 21L, 47L, 52L,
44L, 44L, 20L, 30L, 192L, 46L, 18L, NA, 20L, 51L, 31L, 36L, NA,
150L, 52L, 44L, 14L, 8L, 115L, 47L, 32L, 99L, 14L, 24L, 45L,
12L, 17L, 153L, 45L, 23L, NA, 44L, 46L, 25L, 47L, 25L, 12L, 35L,
164L, 29L, 159L, 18L, 23L, 44L, 45L, 22L, 54L, 13L, 18L, 11L,
29L, 45L, 55L, 139L, 48L, 59L, 53L, 169L, 51L, 47L, 27L, 20L,
124L, 47L, 42L, 8L, 50L, 45L, 80L, 44L, 22L, NA, 75L, 17L, 30L,
46L, 33L, 47L, NA, 45L, 142L, 220L, 134L, 24L, 41L, NA, NA, 45L,
27L, 30L, 37L, NA, 9L, 58L, NA, 11L, NA, 7L, 48L, 43L, 21L, 13L,
19L, 46L, NA, 20L, 47L, 24L, 179L, 45L, 55L, 47L, 44L, 24L, NA,
18L, 50L, 53L, NA, 40L, NA, 18L, 8L, 25L, 45L, 19L, 48L, 46L,
47L, 12L, 51L, NA, 143L, 278L, 138L, 177L, NA, NA, 55L, NA, 19L,
125L, 27L, NA, 40L, 54L, 10L, 43L, 25L, NA, 20L, 23L, 33L, 28L,
12L, 25L, 20L, 50L, 36L, 53L, 6L, 31L, 38L, 15L, 44L, 46L, 17L,
43L, 41L, 32L, 23L, 24L, 12L, 43L, 25L, 11L, 51L, 48L, 15L, 45L,
55L, 23L, 49L, 100L, 8L, 80L, NA, 22L, 105L, 8L, 16L, 21L, 44L,
72L, 11L, 51L, 45L, 24L, 47L, NA, 58L, 21L, 39L, NA, 53L, 46L,
21L, 20L, 42L, 190L, 50L, 11L, NA, 13L, 45L, 26L, 48L, NA, 120L,
42L, 24L, 32L, 12L, 54L, 24L, 52L, 24L, 47L, 29L, 171L, 29L,
NA, 150L, 25L, 143L, 23L, NA, 26L, 21L, 6L, 26L, 58L, 130L, 46L,
43L, 10L, 125L, 12L, 5L, 92L, 14L, 100L, 12L, 39L, 44L, 54L,
23L, 21L, 136L, 45L, 12L, 60L, NA, NA, NA, 121L, 50L, 44L, 50L,
45L, 43L, 21L, 28L, 141L, 47L, 49L, 37L, 30L, 45L, 52L, 49L,
38L, 25L, NA, 55L, 53L, 260L, 17L, 11L, 52L, 14L, 10L, 118L,
29L, 47L, 48L, 57L, 13L, NA, 20L, NA, 13L, 11L, 27L, 22L, 35L,
35L, 38L, 10L, 18L, 42L, 44L, 21L, 28L, 44L, 230L, 10L, 8L, 11L,
19L, 13L, 35L, 41L, 13L, NA, 28L, 9L, 60L, 44L, 41L, 52L, 20L,
49L, 37L, 45L, 36L, 42L, 40L, 130L, 56L, 42L, 39L, 8L, 49L, 41L,
13L, 44L, 24L, 18L, 44L, 30L, 10L, 24L, 26L, 68L, 84L, 37L, 25L,
24L, 9L, 14L, 10L, 20L, 39L, 24L, 27L, NA, 45L, 20L, 134L, 50L,
19L, 25L, NA, 10L, 269L, 20L, 10L, 23L, 11L, 26L, 33L, 38L, 27L,
130L, 18L, 11L, 41L, 22L, 35L, NA, 88L, 15L, 151L, 39L, 153L,
55L, 9L, 51L, 45L, 49L, 14L, NA, 33L, 32L, NA, 40L, 79L, 120L,
17L, 50L, 25L, 10L, 133L, 10L, 25L, 77L, 22L, 20L, 22L, 46L,
48L, 35L, 19L, 50L, 52L, 46L, 32L, 22L, 128L, 24L, 53L, 47L,
11L, 38L, 116L, 187L, 11L, 55L, 11L, 15L, 135L, 108L, 25L, 57L,
NA, 30L, 21L, 43L, 139L, 46L, 48L, 10L, 34L, 26L, 48L, 18L, NA,
196L, 49L, NA, 23L, 38L, 46L, 47L, 51L, 24L, 38L, 23L, NA, 25L,
11L, 25L, 25L, 20L, 30L, 42L, 24L, 15L, 29L, 29L, 34L, 48L, 44L,
40L, 5L, 11L, 136L, 54L, 28L, 22L, 44L, 54L, 110L, 17L, 96L,
34L, 44L, 19L, 15L, 9L, 142L, 54L, 40L, 47L, 150L, 44L, 8L, 48L,
43L, 15L, 52L, 42L, 40L, 16L, 78L, NA, 45L, 156L, 120L, 12L,
186L, 22L, 36L, 50L, 54L, NA, 44L, 31L, 49L, 90L, 25L, 20L, 26L,
45L, NA, 15L, 11L, 30L, 100L, 14L, 51L, 54L, 45L, 45L, 38L, NA,
19L, 120L, 41L, 28L, 53L, 133L, 24L, 29L, 46L, 35L, 56L, 68L,
12L, 170L, 38L, 22L, 45L, 28L, 54L, 20L, 33L, 46L, 19L, 19L,
29L, 30L, 45L, 11L, 25L, 15L, 44L, 42L, 15L, 44L, 23L, 52L, 39L,
146L, 144L, 44L, 39L, NA, 27L, 12L, NA, 115L, 162L, NA, 16L,
27L, 26L, 13L, 33L, 53L, 57L, 100L, 63L, 39L, 218L, NA, 182L,
NA, 51L, 12L, 21L, 48L, 25L, 22L, 43L, NA, 40L, 205L, 23L, 51L,
41L, 40L, 38L, 45L, 27L, NA, 49L, 192L, NA, 47L, 43L, 42L, 204L,
54L, 26L, 22L, 42L, 19L, 49L, 34L, 107L, 130L, 42L, 52L, 16L,
20L, 106L, 15L, 25L, 56L, 23L, 54L, 40L, 45L, 41L, 50L, NA, 49L,
25L, 139L, 40L, 24L, 17L, 47L, 23L, 27L, 48L, 160L, 24L, 38L,
19L, 40L, 23L, 21L, 132L, 21L, 22L, 16L, 179L, 58L, 25L, 47L,
20L, 140L, 50L, 48L, 116L, 149L, 197L, 179L, 25L, 132L, NA, 25L,
NA, 46L, 19L, NA, NA, 54L, 25L, 17L, 53L, 16L, 154L, 41L, 57L,
129L, 51L, 44L, 35L, 55L, 39L, 170L, 24L, 20L, 161L, 167L, 52L,
16L, 19L, 191L, 29L, 16L, 133L, 24L, 18L, 146L, 46L, 42L, 15L,
53L, 48L, 44L, 18L, 24L, 16L, 36L, 45L, 19L, 24L, 9L, 104L, 21L,
202L, 169L, 21L, 135L, 25L, 29L, 25L, 35L, 21L, 176L, 46L, 10L,
54L, 24L, 30L, 136L, 24L, 45L, 43L, 51L, 39L, 46L, NA, 12L, 9L,
24L, 22L, 53L, 190L, 40L, 10L, 31L, 10L, 44L, 25L, 40L, 48L,
13L, 7L, 47L, 25L, 132L, 44L, 46L, 128L, NA, 16L, 12L, 12L, 40L,
29L, 19L, 10L, 26L, 212L, 146L, 14L, 33L, 15L, 55L, 41L, 42L,
24L, 53L, 142L, 28L, 53L, 21L, 22L, 38L, NA, 17L, 180L, 190L,
22L, 38L, 27L, 40L, NA, 44L, 188L, 19L, 27L, 43L, 56L, 10L, 27L,
20L, 22L, 47L, NA, 18L, 128L, 27L, 45L, 48L, 160L, 23L, 33L,
8L, 41L, 45L, 51L, 43L, 37L, 148L, 133L, 58L, 128L, 9L, 136L,
23L, 51L, 44L, 42L, 20L, 44L, 23L, 45L, 203L, 29L, 50L, 27L,
54L, NA, 37L, 45L, 46L, 22L, 194L, 38L, 7L, 29L, 176L, 37L, 20L,
39L, 47L, 13L, 24L, 42L, NA, 53L, 10L, 7L, 33L, NA, 38L, 49L,
17L, 9L, 50L, 51L, NA, 38L, NA, 31L, 11L, 23L, 53L, 19L, 52L,
22L, 7L, 14L, 46L, 41L, 21L, 20L, 41L, 150L, 35L, 239L, 9L, 43L,
28L, 10L, 21L, 41L, NA, 11L, 38L, 25L, 23L, 40L, 8L, 25L, 52L,
19L, 45L, 135L, 114L, 10L, 31L, 43L, 52L, 12L, 42L, 19L, 40L,
12L, 49L, 185L, 14L, 20L, 37L, 18L, 44L, 8L, 21L, 7L, 8L, 12L,
8L, 23L, 26L, 8L, 13L, 23L, 153L, 42L, NA, 40L, 42L, 23L, 20L,
145L, 12L, 45L, 12L, 32L, 38L, 8L, 161L, 53L, 41L, 24L, 9L, 7L,
22L, 44L, 49L, 27L, 17L, 26L, 43L, 35L, 214L, 11L, 59L, 23L,
43L, 24L, 10L, 48L, NA, 44L, 27L, 28L, 43L, 11L, 159L, 42L, 23L,
24L, 39L, 43L, 50L, 186L, 18L, 41L, 44L, 8L, 7L, 13L, 45L, 18L,
47L, 22L, 18L, 169L, 25L, 145L, 25L, 57L, 19L, 36L, 47L, 20L,
48L, 23L, 44L, 168L, 7L, 150L, 18L, 10L, 35L, 28L, 53L, 45L,
8L, 128L, 42L, 43L, 11L, 7L, 46L, 9L, 41L, 7L, 27L, 190L, NA,
23L, 29L, 20L, 45L, 12L, 38L, 27L, 35L, 24L, NA, 204L, 40L, 27L,
43L, 22L, 134L, 27L, 40L, 52L, 35L, 38L, 45L, 11L, 57L, 39L,
8L, 9L, 38L, 24L, 25L, 60L, 45L, 28L, 10L, 54L, 9L, 11L, 9L,
46L, 48L, 48L, 12L, 9L, 34L, 45L, 9L, 9L, 11L, 43L, 24L, 10L,
46L, 53L, 41L, NA, 42L, 46L, 11L, 10L, 10L, 49L, 40L, 13L, 43L,
144L, NA, 9L, 10L, 10L, 50L, 38L, 24L, 9L, 8L, 18L, 49L, NA,
161L, 190L, 24L, 23L, 43L, 58L, 8L, 15L, 26L, 27L, 8L, 8L, 20L,
35L, 22L, 148L, 50L, NA, 22L, 21L, 38L, 47L, 41L, 25L, 10L, 9L,
45L, NA, 10L, 19L, 55L, 43L, 53L, 22L, 47L, 50L, 155L, 55L, 51L,
209L, 20L, 10L, 38L, 198L, 50L, 13L, NA, 41L, 45L, 9L, 44L, 39L,
56L, 43L, 8L, 47L, 148L, 44L, 155L, 22L, 11L, 34L, 22L, 24L,
26L, 50L, 9L, 11L, 11L, 43L, 38L, 45L, 56L, 162L, 40L, 161L,
44L, 8L, 44L, 9L, 27L, 33L, 40L, 25L, 43L, 35L, 39L, 44L, 136L,
24L, 24L, 9L, 26L, 36L, 50L, 43L, 17L, 43L, 35L, 9L, 8L, 11L,
10L, 9L, 44L, 23L, 57L, 27L, NA, 56L, NA, 20L, 9L, 21L, 8L, NA,
11L, 20L, 33L, 49L, 11L, 50L, 11L, 9L, 48L, 32L, 12L, 33L, 9L,
49L, 24L, 10L, 23L, 24L, 58L, 136L, 21L, 40L, 53L, 45L, 48L,
44L, 10L, 135L, 186L, 8L, 44L, 44L, 140L, 51L, 11L, 50L, 9L,
41L, 10L, 20L, 25L, NA, 34L, 9L, 20L, 8L, 48L, 34L, 23L, 11L,
39L, 27L, 27L, 26L, 55L, 9L, 39L, 24L, 18L, 57L, 40L, 42L, 50L,
NA, 9L, 27L, 45L, 9L, 40L, 138L, 145L, 40L, 9L, 186L, 48L, 54L,
23L, 24L, 8L, 44L, 38L, 21L, 53L, 42L, 21L, 24L, 160L, 50L, 51L,
11L, 25L, 136L, 25L, 24L, 48L, 190L, 44L, 200L, 42L, 8L, 10L,
21L, 10L, 60L, 9L, 55L, 8L, 35L, 9L, 21L, 10L, 10L, 45L, 44L,
40L, 44L, NA, 27L, 51L, 45L, 10L, 34L, 46L, 190L, 9L, 50L, 25L,
57L, 30L, 39L, 44L, 42L, 43L, 27L, 8L, 227L, 9L, 34L, 54L, 48L,
22L, 33L, 11L, NA, 42L, 48L, 27L, 61L, 52L, 47L, 10L, 33L, 48L,
NA, 10L, 49L, 52L, 9L, 23L, 10L, 9L, 45L, 32L, 60L, 37L, 8L,
10L, 50L, 23L, 10L, 56L, 13L, 50L, 232L, 44L, 9L, 48L, 35L, 48L,
9L, 50L, 11L, 145L, 39L, 59L, 44L, 24L, 9L, 45L, 144L, 23L, 176L,
26L, 48L, 53L, 44L, 45L, NA, 43L, 37L, 10L, 8L, NA, 46L, 30L,
30L, 10L, 45L, 12L, 43L, 35L, 50L, 9L, 26L, 70L, 25L, 50L, 9L,
20L, 135L, 39L, 16L, 18L, 46L, 45L, 26L, 43L, 42L, 12L, 42L,
11L, 142L, 39L, NA, 226L, 50L, 29L, 25L, 26L, NA, 45L, 10L, 153L,
9L, 10L, NA, 12L, 27L, 10L, 42L, 29L, NA, 41L, 50L, 10L, 14L,
23L, 25L, 50L, 48L, 42L, 9L, 192L, 9L, 8L, 57L, 10L, 21L, 14L,
37L, 9L, 48L, 13L, NA, 51L, 12L, 176L, 44L, 38L, 25L, 44L, 47L,
47L, 45L, 23L, 48L, 45L, 10L, 8L, 11L, 26L, 45L, 8L, 27L, 26L,
28L, 26L, 26L, 166L, 48L, 22L, 10L, 24L, 10L, 31L, 118L, 138L,
10L, 12L, 13L, 22L, 178L, 39L, 10L, 28L, 17L, NA, NA, 54L, 27L,
72L, 11L, 28L, 27L, 24L, 150L, 12L, 95L, 14L, NA, 9L, 60L, 25L,
44L, 30L, 27L, 50L, 10L, 46L, 44L, 54L, 47L, 27L, 58L, NA, 175L,
44L, 54L, 15L, NA, 28L, 235L, 43L, 103L, 38L, 53L, 128L, 30L,
53L, 21L, 23L, 25L, 42L, 27L, 46L, 37L, 167L, NA, 68L, 41L, 44L,
41L, 43L, 12L, 39L, 26L, NA, 29L, 21L, 45L, 52L, 8L, 44L, 49L,
12L, 48L, 27L, 38L, 53L, 131L, 43L, 40L, 11L, 21L, 11L, 45L,
22L, 30L, 23L, 14L, 165L, 53L, 45L, 75L, 44L, NA, 55L, 43L, NA,
45L, 47L, 46L, 116L, 29L, 52L, 118L, 45L, 15L, 14L, 82L, 43L,
27L, 96L, 32L, 27L, 177L, 59L, 22L, 42L, 20L, 108L, NA, 22L,
48L, 50L, 105L, 32L, 112L, 43L, 26L, 12L, 52L, 39L, 190L, 35L,
50L, 47L, 155L, NA, 45L, 14L, 135L, 44L, 24L, NA, 51L, 25L, 54L,
25L, 44L, 50L, 21L, 14L, 30L, 29L, 11L, 178L, 55L, 19L, 105L,
NA, NA, 42L, 45L, NA, 25L, 47L, 50L, 56L, 17L, 21L, 133L, 48L,
13L, 44L, 174L, 23L, 27L, 24L, 220L, 15L, 126L, 12L, 32L, 9L,
47L, NA, 22L, 88L, 46L, 49L, NA, 21L, 19L, 46L, 45L, 26L, 97L,
11L, 191L, 9L, 30L, 10L, 59L, 19L, 20L, NA, 115L, 45L, 28L, 48L,
42L, 20L, 36L, 14L, 54L, 98L, 22L, 20L, 52L, NA, 20L, NA, NA,
26L, 43L, 172L, 25L, 37L, 49L, NA, 141L, 23L, 35L, 41L, 22L,
135L, 100L, 32L, 10L, 22L, 15L, 45L, 11L, 34L, 43L, 40L, 49L,
10L, 16L, 99L, 51L, 19L, 45L, 14L, 195L, 50L, 15L, 24L, 24L,
18L, 54L, NA, 30L, 100L, 30L, 51L, 48L, 46L, 56L, 148L, 22L,
49L, 110L, 38L, 41L, 148L, 52L, 16L, 46L, 13L, 28L, 45L, 24L,
11L, 176L, 28L, 32L, 230L, 133L, 49L, 11L, 49L, 145L, 60L, 33L,
21L, 18L, 34L, 45L, 44L, 173L, 80L, 16L, 33L, 223L, 20L, 21L,
103L, 25L, 22L, 42L, 24L, 17L, 20L, 52L, 21L, 46L, 23L, NA, 62L,
8L, 59L, 45L, 18L, 42L, 143L, 16L, 37L, 21L, 180L, 61L, 50L,
37L, 48L, 145L, 52L, 55L, 41L, NA, 43L, 50L, 20L, 44L, 22L, 21L,
137L, 37L, 45L, 126L, 22L, 43L, 42L, 30L, 45L, 24L, 90L, 160L,
97L, 45L, 18L, 29L, 46L, 47L, 38L, 21L, 39L, 56L, NA, 52L, 58L,
18L, 13L, 188L, 21L, 23L, 54L, 206L, 11L, 51L, 33L, 21L, 22L,
58L, 35L, 58L, 15L, 118L, 26L, 56L, 28L, 20L, 40L, 207L, NA,
96L, 109L, 22L, 21L, 48L, 10L, NA, 17L, 18L, 158L, 11L, 42L,
9L, 19L, 22L, 17L, 14L, 20L, 21L, 41L, 11L, 65L, 53L, 24L, 18L,
17L, 24L, 150L, 188L, 40L, 27L, 176L, 50L, 46L, 110L, 62L, 132L,
NA, 47L, 188L, 12L, 11L, 40L, 157L, 140L, 44L, 23L, 11L, 45L,
27L, 43L, 27L, 20L, 12L, 29L, 18L, 9L, 51L, 45L, NA, 20L, 42L,
45L, 49L, 114L, 41L, 49L, 52L, 49L, 17L, 21L, 55L, NA, 17L, 14L,
41L, 48L, 39L, 13L, 31L, 92L, 11L, 31L, 20L, 28L, 39L, 174L,
32L, 21L, 190L, NA, 44L, 26L, 20L, 26L, 18L, 45L, 17L, 18L, 103L,
45L, 215L, 51L, 15L, 54L, 112L, 21L, 47L, 17L, 148L, 155L, 79L,
58L, 19L, 45L, 16L, 35L, NA, 19L, NA, 39L, 14L, 161L, NA, 24L,
48L, 16L, 65L, 53L, 21L, 29L, 42L, 55L, 46L, 160L, 22L, 25L,
47L, 21L, 15L, 28L, 27L, 36L, 28L, 48L, 94L, 38L, NA, NA, 43L,
15L, 20L, 47L, 184L, 21L, 60L, NA, 44L, 47L, 26L, 53L, 28L, 22L,
28L, 23L, 14L, 162L, 21L, 54L, NA, 15L, NA, 31L, 81L, 39L, 49L,
NA, 62L, 20L, 21L, 42L, 127L, 51L, 168L, 110L, 59L, 25L, 49L,
21L, 36L, NA, 55L, 27L, 20L, 16L, 18L, 17L, 14L, 49L, 23L, 28L,
25L, 37L, 26L, NA, 128L, NA, 15L, NA, 170L, 45L, 53L, 22L, 43L,
39L, 62L, 47L, 12L, 50L, NA, NA, 48L, 39L, 169L, 161L, 33L, 60L,
40L, NA, 47L, 19L, 24L, 54L, 45L, 35L, 23L, 22L, 47L, 125L, 22L,
54L, 19L, 50L, 25L, 17L, 28L, 19L, 39L, 44L, 27L, 23L, 19L, 50L,
143L, 35L, 12L, 24L, 23L, 10L, 20L, 43L, 182L, 110L, 21L, 71L,
25L, 52L, 24L, 22L, 27L, 18L, 22L, 10L, 12L, 22L, NA, 46L, 65L,
16L, NA, 10L, 16L, 26L, 10L, 13L, 140L, 26L, 40L, 131L, 25L,
12L, 43L, 47L, 26L, 27L, 11L, 21L, 25L, 60L, 31L, 24L, 60L, 20L,
30L, 45L, 17L, 9L, 106L, 30L, 70L, 172L, 128L, 67L, 27L, 21L,
60L, 24L, 10L, 50L, 25L, 51L, 44L, 35L, 23L, 49L, 47L, 40L, 10L,
12L, 49L, 21L, 22L, 27L, 31L, 12L, 39L, 21L, 9L, 36L, 36L, 11L,
45L, 10L, 48L, 44L, 33L, 166L, 15L, 44L, 21L, 22L, 180L, 37L,
20L, 19L, 19L, 21L, 38L, 24L, 26L, 24L, 52L, 16L, 9L, 35L, 21L,
54L, 17L, 45L, 44L, 17L, 174L, 18L, 46L, 41L, 44L, 19L, 26L,
20L, 126L, 20L, 39L, 20L, 156L, 22L, 24L, 43L, 18L, 13L, 48L,
43L, 23L, 177L, 11L, 21L, 22L, 52L, 8L, 10L, 10L, 32L, 52L, 11L,
50L, 141L, 20L, 29L, 15L, 57L, 48L, 9L, 32L, 11L, 134L, 27L,
45L, 29L, 11L, NA, 14L, NA, 13L, NA, 11L, 22L, 10L, 11L, 54L,
14L, 41L, 13L, 10L, 49L, 15L, 54L, 113L, 11L, 48L, 46L, 11L,
42L, 12L, NA, 41L, 26L, 10L, 43L, 9L, 21L, 53L, 11L, 28L, 19L,
21L, 22L, 10L, 85L, 37L, 37L, 11L, 12L, 196L, 14L, 51L, 14L,
163L, 7L, NA, 32L, 38L, 41L, 48L, 22L, 10L, 56L, 12L, 13L, 46L,
58L, 24L, 11L, 44L, 28L, 24L, 23L, 24L, 21L, 145L, 46L, 47L,
48L, 11L, 41L, 24L, 10L, 45L, 52L, 24L, 42L, 24L, 11L, 11L, 23L,
10L, 39L, 8L, 31L, 11L, 49L, 11L, 46L, 61L, 21L, 26L, 8L, 13L,
11L, 41L, 248L, 23L, 45L, 23L, 25L, 11L, 41L, 42L, 24L, 19L,
41L, 10L, 10L, 61L, 16L, 27L, 10L, NA, 12L, 12L, 11L, 42L, 29L,
29L, 13L, 22L, NA, 11L, 10L, 21L, 21L, 41L, 11L, 46L, 26L, 34L,
11L, 23L, 48L, 41L, 19L, 48L, NA, 8L, 14L, 155L, 57L, 28L, 13L,
10L, 57L, 26L, 46L, 12L, 12L, 177L, 47L, 18L, 66L, 64L, 54L,
24L, 59L, 24L, 50L, 21L, 13L, 9L, 14L, 45L, 23L, 26L, 22L, 11L,
11L, 90L, 26L, 73L, 12L, 42L, 52L, 187L, 25L, 23L, 11L, 10L,
10L, 66L, 12L, 10L, 12L, 10L, 36L, 59L, 159L, 29L, 11L, 25L,
9L, 40L, 43L, 9L, 198L, 26L, 30L, 36L, 11L, 11L, 42L, NA, 141L,
43L, 15L, 22L, 24L, 8L, 10L, 51L, 49L, 22L, 47L, 12L, 43L, 21L,
11L, 12L, 44L, 10L, 37L, 25L, 43L, 55L, 49L, 22L, 28L, 57L, 49L,
31L, 13L, 14L, 36L, 34L, 11L, 13L, 10L, 19L, 275L, 30L, 21L,
50L, 11L, 50L, 24L, 23L, 16L, 39L, 30L, 47L, 10L, 9L, NA, 43L,
43L, 13L, 50L, 48L, 11L, 57L, 22L, 43L, 19L, 9L, NA, 53L, 17L,
19L, 16L, 41L, 24L, 13L, 22L, 27L, 10L, 10L, 64L, 155L, 13L,
12L, 10L, 104L, NA, NA, NA, NA, 10L, 20L, 12L, 53L, 10L, 10L,
9L, 10L, 43L, 44L, 34L, 21L, 50L, 9L, 57L, 17L, 25L, 10L, 50L,
26L, 120L, 24L, 11L, 57L, 36L, 13L, 11L, 9L, 25L, 35L, 52L, 47L,
10L, 22L, 18L, 11L, 20L, 51L, 134L, 49L, 54L, 45L, 48L, 21L,
26L, 9L, 11L, 8L, 10L, 19L, 13L, 9L, 22L, 12L, 44L, 61L, 50L,
80L, 50L, 11L, 10L, 50L, 10L, 23L, 10L, 54L, 46L, 21L, 11L, 47L,
10L, 20L, 13L, 9L, 10L, 11L, 24L, NA, 197L, 23L, NA, 11L, 240L,
160L, 11L, 12L, 11L, 9L, 10L, 43L, 48L, 11L, 20L, 43L, 9L, 23L,
NA, 48L, 47L, 44L, 12L, 11L, 25L, 10L, 13L, 25L, 29L, 26L, 40L,
10L, 9L, 42L, NA, 24L, 31L, 11L, 22L, 10L, 47L, 12L, 46L, 78L,
9L, 47L, 29L, 11L, 26L, 48L, 44L, 56L, 10L, 21L, 54L, 42L, 24L,
49L, 27L, 18L, 33L, 11L, 22L, 9L, 44L, 5L, NA, 47L, 39L, 48L,
33L, 24L, 41L, 23L, 11L, 10L, 11L, 36L, 41L, 30L, 39L, 10L, 20L,
9L, 37L, 45L, 44L, 47L, 10L, 187L, 27L, 27L, 13L, 24L, 123L,
11L, 249L, 27L, 11L, 11L, 11L, 22L, 31L, 10L, 12L, 11L, 21L,
12L, 10L, 51L, 101L, 13L, 23L, 6L, 40L, 24L, 19L, 22L, 22L, 81L,
135L, 10L, 46L, 12L, 11L, 23L, 11L, 23L, 13L, NA, 24L, 26L, 10L,
16L, 11L, 28L, 49L, 48L, 12L, 90L, 24L, 11L, 14L, 34L, 70L, 14L,
25L, 9L, 13L, 11L, 24L, 13L, 11L, 28L, 13L, 11L, 9L, 84L, 10L,
25L, 10L, 26L, 48L, 31L, 58L, 11L, 11L, 11L, 12L, 89L, 14L, 183L,
30L, 55L, 24L, 27L, 25L, 10L, 60L, 47L, 25L, 75L, 21L, 10L, 22L,
16L, 42L, 23L, 242L, 24L, 12L, 11L, NA, 12L, 48L, 105L, 54L,
49L, 90L, 46L, 49L, 34L, 11L, 14L, 133L, 45L, 10L, 13L, 13L,
28L, 192L, 49L, 12L, 45L, 12L, NA, 28L, 10L, 55L, 93L, 24L, 25L,
45L, 12L, NA, 39L, 41L, 47L, 10L, NA, 47L, 11L, 11L, 12L, 11L,
50L, 19L, 51L, 50L, 10L, 11L, 88L, 22L, 12L, 55L, 49L, 101L,
29L, 18L, 26L, 56L, 25L, 196L, 137L, 82L, 49L, 35L, 9L, 107L,
13L, 21L, 22L, 12L, 93L, 43L, 29L, 13L, 40L, 11L, 30L, 53L, NA,
10L, 22L, 48L, 24L, 46L, 146L, 9L, 46L, 54L, 10L, 11L, 10L, 45L,
27L, 47L, NA, 9L, 38L, 10L, 44L, 31L, 48L, 13L, 11L, 33L, 40L,
14L, 16L, 10L, 40L, 25L, 36L, 22L, 12L, 15L, 48L, 12L, 36L, 11L,
16L, 54L, 12L, 10L, 12L, 21L, 86L, 180L, 46L, 49L, 25L, 10L,
8L, 23L, 10L, 13L, 103L, 15L, 102L, NA, 9L, 10L, 10L, 11L, 33L,
6L, 12L, 24L, 13L, 9L, 8L, 106L, 9L, 12L, 11L, 11L, 137L, 49L,
98L, 11L, 190L, NA, 51L, NA, 13L, 27L, 12L, 9L, 9L, 27L, 10L,
10L, 13L, 9L, 48L, 22L, 20L, 12L, 48L, 20L, 115L, 23L, 21L, 53L,
10L, 10L, 13L, NA, 35L, 7L, 177L, 17L, 10L, 12L, 100L, 25L, 43L,
31L, 188L, 22L, 120L, 138L, 22L, 42L, 13L, 48L, 45L, 30L, 134L,
15L, 9L, 47L, 28L, 108L, 22L, 9L, 39L, 48L, 73L, 12L, 10L, 38L,
13L, 30L, 18L, NA, 42L, 34L, 8L, 27L, 48L, 78L, 20L, 24L, 56L,
47L, 21L, 10L, 89L, 8L, 56L, 20L, 10L, 11L, 88L, 34L, 10L, 26L,
47L, 39L, 22L, 56L, 20L, 85L, 39L, 22L, 43L, 19L, 8L, 19L, 41L,
123L, 50L, 21L, 10L, 24L, 10L, 108L, 43L, 55L, 39L, 203L, NA,
26L, 32L, 10L, 11L, 15L, 9L, 25L, 36L, 6L, 29L, 29L, 10L, 45L,
44L, 26L, 47L, 43L, 10L, 11L, 10L, 35L, 16L, 34L, 48L, 40L, 48L,
42L, 11L, 13L, 41L, 8L, 52L, 8L, 26L, 45L, 9L, NA, 148L, 16L,
NA, 49L, 21L, 9L, 18L, 21L, 20L, 10L, 57L, NA, 126L, 8L, 54L,
9L, 8L, 114L, 11L, 43L, 19L, 121L, NA, 18L, 46L, 12L, 178L, 10L,
18L, NA, 130L, 10L, 10L, 58L, 7L, 41L, 26L, 10L, 10L, 22L, 32L,
23L, 23L, 10L, 47L, 8L, 10L, 28L, 18L, 21L, 24L, 21L, 141L, 95L,
113L, 8L, 10L, 46L, 9L, 67L, 8L, NA, 34L, 51L, NA, 111L, 11L,
18L, 60L, 44L, 25L, 113L, 11L, NA, 41L, 20L, NA, 32L, 14L, 10L,
10L, 8L, 37L, 54L, 18L, NA, 12L, 49L, 10L, NA, 12L, 45L, 44L,
104L, 46L, 36L, 19L, 47L, 12L, 22L, 9L, 14L, 38L, 18L, 42L, 40L,
23L, 37L, 31L, 52L, 44L, 5L, 21L, 21L, 45L, 11L, NA, 10L, 20L,
NA, 15L, 47L, 120L, 207L, 10L, NA, 15L, 11L, NA, 61L, 10L, NA,
84L, 145L, 11L, 42L, 20L, NA, 10L, 80L, 10L, NA, 131L, NA, 9L,
48L, 11L, NA, 9L, 24L, NA, 44L, 10L, 23L, 73L, 47L, 119L, 36L,
NA, 22L, 9L, NA, 160L, NA, NA, 14L, 19L, 10L, 46L, 21L, 51L,
NA, 10L, 43L, 30L, 46L, 105L, 52L, 16L, 44L, 9L, 23L, 9L, 8L,
25L, 23L, 22L, 43L, 102L, NA, 46L, 45L, 41L, 46L, 21L, NA, 16L,
NA, 82L, NA, 13L, 52L, 50L, NA, 42L, 10L, 32L, 10L, 26L, 46L,
18L, 58L, 10L, 116L, 13L, NA, 48L, 9L, 11L, 14L, 51L, 17L, 47L,
8L, NA, 22L, 19L, 18L, 19L, 22L, 40L, NA, 10L, 30L, NA, 88L,
NA, 26L, 16L, 50L, 132L, 102L, 11L, 46L, 45L, 13L, NA, 49L, 51L,
47L, 77L, 21L, 52L, 18L, 23L, 14L, 25L, 31L, 19L, 11L, 29L, 38L,
18L, 42L, 44L, 11L, 17L, 51L, 23L, 27L, 14L, 42L, NA, 48L, 31L,
28L, 51L, 52L, 11L, 44L, 41L, 16L, 46L, 58L, 40L, NA, 12L, 18L,
47L, 43L, 21L, 11L, 17L, 47L, 47L, 47L, 26L, 151L, 49L, 17L,
56L, 48L, 31L, NA, 8L, 50L, 97L, 45L, 52L, 15L, 22L, 43L, 44L,
36L, 42L, NA, 17L, 29L, 22L, 66L, 15L, 7L, 51L, 24L, 7L, 127L,
17L, 27L, 23L, 22L, 54L, 58L, 22L, 23L, 36L, 30L, 29L, NA, 28L,
52L, 121L, 48L, 49L, 27L, 28L, 118L, 18L, 54L, 25L, 23L, 100L,
37L, 49L, 27L, 40L, 50L, 46L, 22L, 208L, 49L, 16L, 50L, 55L,
15L, 45L, 42L, 53L, 96L, 56L, 16L, 46L, 22L, 42L, 43L, 13L, 45L,
47L, NA, 16L, 42L, 27L, 44L, 40L, 48L, 167L, 50L, 25L, 23L, 49L,
46L, NA, 47L, 21L, 20L, 47L, 23L, 21L, 25L, 55L, 43L, 15L, 52L,
36L, 23L, 58L, 25L, 15L, 140L, 28L, 115L, 38L, 39L, 47L, 16L,
22L, 36L, 43L, 12L, 18L, 92L, 11L, 9L, 42L, NA, 43L, 47L, 45L,
48L, 18L, 50L, 28L, 20L, 60L, 18L, 50L, 27L, 9L, 40L, 185L, 15L,
14L, 53L, 22L, 22L, 8L, 48L, 24L, 14L, 39L, 46L, 23L, 23L, 23L,
7L, 7L, NA, 48L, 10L, 9L, 52L, 56L, 14L, NA, 20L, 21L, 35L, 13L,
48L, 43L, 56L, 126L, 149L, 49L, 7L, 47L, 53L, 26L, 45L, 23L,
23L, 15L, 15L, 10L, 12L, 9L, 50L, 10L, 35L, 7L, 6L, 25L, 7L,
28L, 10L, NA, 22L, 190L, 17L, 8L, 7L, 24L, 52L, 32L, 11L, 22L,
12L, 45L, 128L, NA, 10L, 27L, 7L, 55L, 19L, 156L, 12L, 27L, 29L,
7L, 38L, 8L, 7L, NA, 115L, 8L, 56L, 11L, 11L, 27L, 7L, 157L,
26L, NA, 53L, 13L, 17L, 46L, 15L, 49L, 55L, 15L, 23L, 13L, 52L,
23L, 24L, 24L, 50L, 50L, 51L, 10L, 41L, 46L, 8L, 48L, 46L, 13L,
46L, 18L, 55L, 24L, 39L, 11L, 20L, 26L, 33L, NA, 17L, 48L, 20L,
14L, 46L, 9L, 8L, 47L, 19L, NA, 35L, 30L, 8L, 23L, 53L, 45L,
23L, 43L, 43L, 42L, 25L, 17L, NA, 115L, 22L, 7L, 9L, 16L, 23L,
25L, 46L, 11L, 59L, 45L, 50L, 44L, 10L, 30L, 24L, 10L, 17L, 33L,
48L, 50L, 44L, 53L, 18L, 44L, 10L, 15L, 48L, 10L, 11L, 8L, 17L,
10L, 8L, 47L, 47L, 31L, 20L, 19L, 49L, 82L, 7L, 24L, 8L, 15L,
40L, 6L, 10L, 190L, 10L, 49L, 21L, 21L, 55L, 27L, 28L, 14L, 47L,
10L, 10L, 10L, 11L, 12L, 110L, 12L, 7L, 7L, 50L, 56L, 12L, 43L,
52L, 10L, 10L, 9L, 53L, 9L, 13L, 56L, 32L, 10L, 12L, 13L, 14L,
6L, 9L, 158L, 19L, 11L, 14L, 10L, 21L, 18L, 24L, 9L, 49L, 6L,
9L, 14L, 14L, 7L, 12L, 40L, 51L, 15L, 20L, 39L, 8L, 47L, 9L,
43L, 8L, 13L, 47L, 51L, 24L, 49L, 11L, 43L, 10L, 52L, 46L, 13L,
51L, 161L, 44L, 25L, 10L, 43L, 47L, 27L, 10L, 6L, 47L, 62L, 25L,
35L, 22L, 34L, 46L, 14L, 10L, 8L, 10L, 45L, 46L, 8L, 45L, NA,
50L, 37L, 12L, 45L, 21L, 50L, 123L, 12L, 47L, 7L, 47L, 13L, 51L,
15L, 9L, 31L, 50L, 42L), genus = c("Neotoma", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Peromyscus", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Perognathus", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Sigmodon", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Spermophilus", "Perognathus",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Neotoma", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Neotoma", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Neotoma", "Dipodomys", "Perognathus", "Chaetodipus", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Neotoma", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Neotoma", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Dipodomys", "Neotoma", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Neotoma", "Perognathus",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Onychomys", "Perognathus", "Dipodomys",
"Perognathus", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Perognathus", "Onychomys", "Dipodomys", "Onychomys",
"Perognathus", "Neotoma", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Dipodomys", "Onychomys", "Perognathus",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Neotoma",
"Perognathus", "Dipodomys", "Dipodomys", "Onychomys", "Perognathus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Perognathus", "Dipodomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Neotoma",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Neotoma", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Neotoma", "Perognathus", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Peromyscus", "Perognathus", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Perognathus", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Neotoma",
"Dipodomys", "Perognathus", "Peromyscus", "Onychomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Dipodomys", "Neotoma", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Spermophilus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Spermophilus", "Onychomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Spermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Perognathus", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Spermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Neotoma", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Chaetodipus", "Onychomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Peromyscus",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Peromyscus", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Perognathus", "Peromyscus", "Dipodomys", "Neotoma", "Chaetodipus",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Perognathus", "Onychomys", "Dipodomys", "Onychomys", "Chaetodipus",
"Onychomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Chaetodipus", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Perognathus", "Peromyscus",
"Dipodomys", "Neotoma", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Chaetodipus", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Perognathus", "Chaetodipus",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Spermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Neotoma", "Chaetodipus", "Dipodomys", "Neotoma",
"Chaetodipus", "Dipodomys", "Perognathus", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Perognathus", "Dipodomys",
"Spermophilus", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Sigmodon", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Ammospermophilus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Spermophilus",
"Dipodomys", "Onychomys", "Onychomys", "Onychomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Onychomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Onychomys", "Onychomys", "Dipodomys",
"Onychomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Neotoma", "Chaetodipus", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Onychomys", "Neotoma",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Neotoma",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Perognathus", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Neotoma", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Onychomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Perognathus", "Perognathus", "Dipodomys", "Peromyscus",
"Dipodomys", "Perognathus", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Chaetodipus", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Chaetodipus", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Chaetodipus", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Neotoma", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Spermophilus",
"Onychomys", "Chaetodipus", "Dipodomys", "Onychomys", "Onychomys",
"Onychomys", "Dipodomys", "Chaetodipus", "Onychomys", "Dipodomys",
"Onychomys", "Perognathus", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Spermophilus", "Neotoma", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Onychomys", "Dipodomys",
"Neotoma", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Neotoma", "Onychomys", "Onychomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Peromyscus", "Perognathus", "Dipodomys",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Neotoma",
"Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Perognathus", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Onychomys", "Reithrodontomys", "Onychomys",
"Onychomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Perognathus", "Dipodomys",
"Onychomys", "Perognathus", "Dipodomys", "Onychomys", "Dipodomys",
"Peromyscus", "Onychomys", "Onychomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Neotoma", "Reithrodontomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Neotoma", "Peromyscus", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Neotoma",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Onychomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Neotoma", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Onychomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Onychomys",
"Onychomys", "Onychomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Neotoma", "Onychomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Neotoma", "Dipodomys", "Perognathus",
"Onychomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Perognathus", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Dipodomys", "Onychomys", "Dipodomys",
"Neotoma", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Perognathus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Perognathus", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Perognathus", "Neotoma", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Perognathus", "Peromyscus",
"Dipodomys", "Onychomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Onychomys", "Dipodomys",
"Perognathus", "Onychomys", "Onychomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Perognathus",
"Dipodomys", "Perognathus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Peromyscus", "Onychomys", "Onychomys", "Perognathus", "Dipodomys",
"Perognathus", "Reithrodontomys", "Dipodomys", "Dipodomys", "Perognathus",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Onychomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Perognathus", "Perognathus",
"Dipodomys", "Neotoma", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Neotoma", "Onychomys", "Perognathus", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Perognathus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Onychomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Onychomys",
"Perognathus", "Dipodomys", "Onychomys", "Perognathus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Perognathus",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Chaetodipus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Perognathus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Spermophilus",
"Peromyscus", "Onychomys", "Perognathus", "Perognathus", "Dipodomys",
"Perognathus", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Perognathus", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Perognathus", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Perognathus", "Dipodomys",
"Neotoma", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Neotoma", "Neotoma", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Perognathus", "Dipodomys", "Spermophilus", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Perognathus", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Perognathus", "Dipodomys",
"Dipodomys", "Onychomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Spermophilus", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys", "Neotoma",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Perognathus", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Neotoma", "Spermophilus", "Neotoma",
"Neotoma", "Chaetodipus", "Dipodomys", "Dipodomys", "Perognathus",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Perognathus", "Dipodomys",
"Onychomys", "Chaetodipus", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Spermophilus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Perognathus", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Spermophilus",
"Spermophilus", "Dipodomys", "Peromyscus", "Perognathus", "Dipodomys",
"Perognathus", "Neotoma", "Onychomys", "Dipodomys", "Perognathus",
"Chaetodipus", "Onychomys", "Dipodomys", "Perognathus", "Dipodomys",
"Neotoma", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Onychomys", "Dipodomys", "Onychomys", "Chaetodipus", "Dipodomys",
"Onychomys", "Reithrodontomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Perognathus", "Onychomys", "Perognathus", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Perognathus",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Onychomys", "Onychomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Neotoma", "Dipodomys", "Onychomys", "Onychomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Neotoma", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Perognathus",
"Dipodomys", "Dipodomys", "Onychomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Perognathus", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Perognathus", "Onychomys", "Perognathus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Onychomys", "Onychomys", "Dipodomys",
"Onychomys", "Neotoma", "Perognathus", "Dipodomys", "Onychomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Perognathus", "Neotoma",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Perognathus", "Dipodomys", "Onychomys", "Neotoma",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys", "Onychomys",
"Perognathus", "Onychomys", "Chaetodipus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Neotoma",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Neotoma", "Onychomys",
"Neotoma", "Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Onychomys", "Dipodomys", "Perognathus",
"Reithrodontomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Neotoma", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Onychomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Onychomys", "Peromyscus", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Perognathus",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Perognathus",
"Spermophilus", "Neotoma", "Dipodomys", "Dipodomys", "Chaetodipus",
"Spermophilus", "Onychomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Spermophilus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Perognathus", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Onychomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus",
"Chaetodipus", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Spermophilus",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Onychomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Perognathus",
"Perognathus", "Chaetodipus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Peromyscus",
"Neotoma", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Neotoma",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Perognathus", "Dipodomys", "Perognathus", "Perognathus", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Onychomys", "Perognathus", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Chaetodipus",
"Chaetodipus", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Perognathus",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Neotoma", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Neotoma", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Peromyscus", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Neotoma", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Onychomys", "Spermophilus", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Peromyscus",
"Peromyscus", "Dipodomys", "Onychomys", "Peromyscus", "Onychomys",
"Onychomys", "Onychomys", "Dipodomys", "Neotoma", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Onychomys", "Onychomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Neotoma", "Perognathus", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Chaetodipus",
"Dipodomys", "Onychomys", "Neotoma", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Peromyscus", "Onychomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Perognathus", "Dipodomys", "Dipodomys", "Peromyscus", "Onychomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Peromyscus", "Neotoma", "Onychomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Peromyscus",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Perognathus",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Onychomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Perognathus",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys",
"Perognathus", "Reithrodontomys", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Neotoma", "Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Peromyscus", "Reithrodontomys",
"Peromyscus", "Neotoma", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Perognathus", "Peromyscus", "Neotoma",
"Dipodomys", "Perognathus", "Onychomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Neotoma", "Reithrodontomys", "Neotoma", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Neotoma", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Neotoma", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys",
"Reithrodontomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Neotoma", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Neotoma", "Dipodomys", "Peromyscus", "Dipodomys",
"Onychomys", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Neotoma", "Dipodomys", "Dipodomys", "Peromyscus", "Perognathus",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Perognathus", "Onychomys", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Onychomys", "Perognathus", "Neotoma", "Perognathus",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Neotoma", "Peromyscus", "Perognathus", "Dipodomys",
"Dipodomys", "Neotoma", "Peromyscus", "Peromyscus", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Perognathus",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Neotoma", "Reithrodontomys", "Perognathus",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys", "Neotoma",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Perognathus", "Perognathus",
"Onychomys", "Neotoma", "Neotoma", "Reithrodontomys", "Neotoma",
"Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Perognathus", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Onychomys", "Perognathus", "Onychomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Neotoma", "Dipodomys", "Peromyscus", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Onychomys", "Peromyscus",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Onychomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Peromyscus",
"Peromyscus", "Dipodomys", "Perognathus", "Spermophilus", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Perognathus",
"Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys", "Neotoma",
"Onychomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Neotoma", "Dipodomys", "Peromyscus", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Peromyscus",
"Reithrodontomys", "Neotoma", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Chaetodipus", "Dipodomys", "Dipodomys", "Peromyscus",
"Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Peromyscus", "Onychomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Chaetodipus", "Dipodomys", "Reithrodontomys", "Onychomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Peromyscus", "Onychomys", "Onychomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Chaetodipus", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Spermophilus", "Peromyscus", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus", "Perognathus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Neotoma", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Neotoma", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Perognathus", "Reithrodontomys",
"Neotoma", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Peromyscus",
"Peromyscus", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Neotoma", "Neotoma", "Neotoma", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Neotoma", "Sigmodon", "Dipodomys", "Perognathus",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Perognathus", "Spermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Chaetodipus", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Neotoma", "Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Chaetodipus",
"Onychomys", "Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Dipodomys", "Perognathus", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Neotoma", "Dipodomys", "Neotoma", "Reithrodontomys",
"Perognathus", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Reithrodontomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Perognathus", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Perognathus", "Reithrodontomys", "Neotoma", "Chaetodipus", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Neotoma", "Onychomys", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Perognathus", "Perognathus", "Perognathus", "Dipodomys", "Perognathus",
"Reithrodontomys", "Onychomys", "Neotoma", "Dipodomys", "Dipodomys",
"Spermophilus", "Neotoma", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Perognathus", "Dipodomys", "Reithrodontomys",
"Perognathus", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Spermophilus", "Peromyscus", "Neotoma", "Dipodomys", "Neotoma",
"Neotoma", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Perognathus", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Neotoma", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Neotoma", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Neotoma", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Chaetodipus", "Onychomys", "Dipodomys",
"Perognathus", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Chaetodipus", "Sigmodon", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Peromyscus", "Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Neotoma", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Onychomys",
"Perognathus", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Onychomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Neotoma", "Perognathus", "Chaetodipus",
"Dipodomys", "Neotoma", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Onychomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Peromyscus", "Neotoma", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Onychomys", "Perognathus",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Onychomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Neotoma",
"Dipodomys", "Dipodomys", "Neotoma", "Neotoma", "Dipodomys",
"Dipodomys", "Chaetodipus", "Perognathus", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Perognathus",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Onychomys", "Perognathus",
"Perognathus", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Neotoma", "Neotoma", "Perognathus",
"Neotoma", "Onychomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Peromyscus",
"Chaetodipus", "Dipodomys", "Neotoma", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Perognathus", "Dipodomys", "Perognathus", "Perognathus", "Perognathus",
"Dipodomys", "Dipodomys", "Neotoma", "Peromyscus", "Peromyscus",
"Neotoma", "Neotoma", "Perognathus", "Onychomys", "Peromyscus",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus",
"Onychomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Perognathus", "Perognathus", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Spermophilus", "Perognathus",
"Neotoma", "Dipodomys", "Onychomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Onychomys",
"Perognathus", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Dipodomys", "Dipodomys", "Peromyscus",
"Perognathus", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Neotoma", "Perognathus", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Peromyscus", "Perognathus", "Neotoma", "Dipodomys",
"Peromyscus", "Dipodomys", "Perognathus", "Dipodomys", "Perognathus",
"Peromyscus", "Dipodomys", "Chaetodipus", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Peromyscus",
"Dipodomys", "Peromyscus", "Perognathus", "Dipodomys", "Perognathus",
"Perognathus", "Dipodomys", "Dipodomys", "Perognathus", "Perognathus",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Spermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Neotoma", "Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Neotoma",
"Perognathus", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Onychomys", "Perognathus", "Dipodomys", "Neotoma",
"Onychomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Onychomys",
"Neotoma", "Dipodomys", "Dipodomys", "Perognathus", "Onychomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Peromyscus", "Spermophilus", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Perognathus", "Dipodomys",
"Chaetodipus", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Onychomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Chaetodipus", "Dipodomys", "Onychomys", "Peromyscus",
"Perognathus", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Perognathus",
"Perognathus", "Dipodomys", "Dipodomys", "Onychomys", "Perognathus",
"Neotoma", "Chaetodipus", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Perognathus", "Neotoma", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Perognathus", "Peromyscus", "Onychomys", "Dipodomys",
"Chaetodipus", "Onychomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Perognathus", "Onychomys", "Perognathus",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Neotoma", "Onychomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Perognathus",
"Perognathus", "Dipodomys", "Onychomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Perognathus",
"Perognathus", "Dipodomys", "Neotoma", "Dipodomys", "Peromyscus",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Spermophilus", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Neotoma", "Onychomys", "Onychomys", "Dipodomys", "Perognathus",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Onychomys", "Onychomys",
"Peromyscus", "Perognathus", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Onychomys", "Onychomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Onychomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Onychomys", "Peromyscus", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys",
"Onychomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Perognathus", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Perognathus", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Peromyscus", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Perognathus",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Onychomys", "Perognathus",
"Dipodomys", "Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Onychomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Reithrodontomys", "Perognathus", "Perognathus",
"Peromyscus", "Dipodomys", "Perognathus", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Neotoma",
"Ammospermophilus", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Peromyscus", "Onychomys",
"Reithrodontomys", "Neotoma", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Perognathus", "Perognathus",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Neotoma", "Onychomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Neotoma", "Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Perognathus", "Perognathus",
"Onychomys", "Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus",
"Perognathus", "Reithrodontomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Perognathus", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Neotoma", "Perognathus",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Perognathus", "Dipodomys",
"Onychomys", "Reithrodontomys", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Perognathus", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Perognathus", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Spermophilus",
"Dipodomys", "Onychomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Perognathus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Perognathus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Sigmodon", "Onychomys", "Dipodomys",
"Onychomys", "Onychomys", "Reithrodontomys", "Perognathus", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Perognathus", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Perognathus", "Perognathus", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Perognathus", "Reithrodontomys",
"Reithrodontomys", "Onychomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Onychomys", "Perognathus", "Dipodomys", "Perognathus", "Dipodomys",
"Perognathus", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Onychomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Perognathus", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys", "Perognathus",
"Perognathus", "Dipodomys", "Chaetodipus", "Dipodomys", "Neotoma",
"Ammospermophilus", "Dipodomys", "Reithrodontomys", "Onychomys",
"Neotoma", "Perognathus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Perognathus", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Sigmodon",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Onychomys", "Neotoma", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Perognathus", "Onychomys",
"Dipodomys", "Dipodomys", "Perognathus", "Peromyscus", "Perognathus",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Perognathus", "Perognathus", "Perognathus", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Perognathus", "Perognathus", "Dipodomys", "Perognathus", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Peromyscus", "Peromyscus", "Dipodomys", "Reithrodontomys", "Chaetodipus",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Perognathus",
"Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Peromyscus", "Dipodomys",
"Peromyscus", "Perognathus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Perognathus", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Perognathus", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Perognathus",
"Onychomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Peromyscus", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Neotoma", "Dipodomys", "Neotoma", "Peromyscus",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Neotoma",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Perognathus", "Peromyscus", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Chaetodipus", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Perognathus", "Perognathus", "Dipodomys", "Perognathus", "Peromyscus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Peromyscus", "Dipodomys", "Perognathus", "Perognathus", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Reithrodontomys",
"Dipodomys", "Perognathus", "Chaetodipus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Neotoma", "Dipodomys", "Dipodomys",
"Peromyscus", "Neotoma", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Perognathus", "Neotoma",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Onychomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Onychomys", "Chaetodipus",
"Dipodomys", "Onychomys", "Spermophilus", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Perognathus", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Spermophilus", "Chaetodipus", "Dipodomys", "Neotoma",
"Dipodomys", "Perognathus", "Perognathus", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Neotoma",
"Perognathus", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Onychomys", "Perognathus",
"Dipodomys", "Neotoma", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Neotoma",
"Peromyscus", "Dipodomys", "Onychomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Onychomys", "Perognathus", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Neotoma", "Onychomys",
"Neotoma", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Perognathus", "Neotoma", "Onychomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Perognathus", "Chaetodipus", "Dipodomys",
"Dipodomys", "Onychomys", "Chaetodipus", "Spermophilus", "Neotoma",
"Dipodomys", "Dipodomys", "Neotoma", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Neotoma", "Chaetodipus",
"Neotoma", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Neotoma", "Dipodomys", "Onychomys", "Onychomys", "Neotoma",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Neotoma", "Neotoma", "Chaetodipus", "Onychomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Onychomys",
"Perognathus", "Dipodomys", "Spermophilus", "Perognathus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Perognathus", "Onychomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Perognathus", "Chaetodipus", "Onychomys", "Perognathus",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Chaetodipus",
"Neotoma", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Neotoma", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Neotoma", "Dipodomys", "Neotoma", "Neotoma", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Neotoma", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Neotoma", "Dipodomys",
"Neotoma", "Peromyscus", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Neotoma", "Perognathus", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Chaetodipus", "Chaetodipus",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Reithrodontomys",
"Neotoma", "Dipodomys", "Onychomys", "Dipodomys", "Perognathus",
"Perognathus", "Dipodomys", "Spermophilus", "Neotoma", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Neotoma", "Dipodomys", "Dipodomys", "Perognathus", "Neotoma",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Chaetodipus",
"Chaetodipus", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Onychomys", "Perognathus", "Neotoma",
"Perognathus", "Dipodomys", "Neotoma", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Neotoma", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Onychomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Chaetodipus", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Perognathus", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys", "Peromyscus",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Neotoma", "Perognathus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Neotoma",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Dipodomys", "Peromyscus", "Peromyscus", "Chaetodipus", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Onychomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Peromyscus", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Onychomys", "Dipodomys", "Peromyscus",
"Neotoma", "Onychomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Onychomys",
"Perognathus", "Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Neotoma", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Neotoma", "Onychomys",
"Peromyscus", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Spermophilus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Neotoma", "Spermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Perognathus", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Onychomys", "Neotoma",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Chaetodipus", "Onychomys", "Onychomys", "Chaetodipus",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Onychomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Neotoma", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Neotoma", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Spermophilus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Chaetodipus", "Peromyscus", "Chaetodipus", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Neotoma", "Dipodomys",
"Onychomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Neotoma", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Peromyscus", "Spermophilus", "Spermophilus", "Dipodomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Spermophilus", "Onychomys",
"Peromyscus", "Neotoma", "Reithrodontomys", "Reithrodontomys",
"Neotoma", "Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Onychomys", "Onychomys", "Onychomys", "Neotoma", "Neotoma",
"Onychomys", "Dipodomys", "Reithrodontomys", "Neotoma", "Onychomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Onychomys", "Neotoma", "Onychomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Onychomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Spermophilus", "Neotoma", "Dipodomys",
"Peromyscus", "Dipodomys", "Neotoma", "Dipodomys", "Onychomys",
"Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Reithrodontomys", "Neotoma", "Dipodomys",
"Peromyscus", "Neotoma", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Chaetodipus", "Chaetodipus", "Neotoma", "Peromyscus",
"Dipodomys", "Chaetodipus", "Spermophilus", "Onychomys", "Dipodomys",
"Dipodomys", "Neotoma", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Reithrodontomys", "Onychomys", "Spermophilus",
"Spermophilus", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Neotoma", "Chaetodipus", "Spermophilus", "Onychomys", "Chaetodipus",
"Dipodomys", "Neotoma", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Perognathus", "Neotoma", "Peromyscus", "Onychomys",
"Neotoma", "Neotoma", "Reithrodontomys", "Onychomys", "Onychomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Onychomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Neotoma", "Perognathus", "Neotoma",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Ammospermophilus", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Perognathus",
"Dipodomys", "Onychomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Neotoma", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Neotoma", "Chaetodipus", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Chaetodipus", "Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Neotoma", "Onychomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Spermophilus", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Spermophilus", "Dipodomys", "Ammospermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Spermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Onychomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Onychomys", "Neotoma", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Onychomys", "Perognathus", "Perognathus",
"Dipodomys", "Neotoma", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Perognathus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Reithrodontomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Onychomys",
"Onychomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Peromyscus", "Ammospermophilus", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Ammospermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Ammospermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Perognathus", "Dipodomys", "Peromyscus", "Dipodomys",
"Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Onychomys", "Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Peromyscus", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Spermophilus", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Neotoma", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Onychomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Ammospermophilus", "Dipodomys", "Dipodomys", "Spermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Onychomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Peromyscus", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Onychomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Spermophilus",
"Onychomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Spermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Chaetodipus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Spermophilus",
"Peromyscus", "Onychomys", "Reithrodontomys", "Dipodomys", "Neotoma",
"Onychomys", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Onychomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Spermophilus", "Dipodomys",
"Onychomys", "Dipodomys", "Spermophilus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Ammospermophilus", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Neotoma", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys",
"Ammospermophilus", "Chaetodipus", "Reithrodontomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Neotoma",
"Reithrodontomys", "Neotoma", "Dipodomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Neotoma", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Neotoma", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Chaetodipus",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Neotoma", "Onychomys", "Spermophilus", "Neotoma", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Onychomys",
"Neotoma", "Dipodomys", "Dipodomys", "Ammospermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Chaetodipus", "Onychomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Chaetodipus", "Dipodomys", "Spermophilus",
"Dipodomys", "Reithrodontomys", "Neotoma", "Peromyscus", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Peromyscus",
"Chaetodipus", "Chaetodipus", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Onychomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Peromyscus",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Spermophilus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys",
"Neotoma", "Onychomys", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Spermophilus",
"Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Perognathus", "Spermophilus", "Neotoma", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Onychomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus", "Onychomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Onychomys", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Neotoma", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Perognathus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Peromyscus",
"Chaetodipus", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Dipodomys", "Neotoma", "Reithrodontomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Ammospermophilus", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Neotoma", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Neotoma",
"Spermophilus", "Onychomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Perognathus",
"Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Peromyscus", "Spermophilus", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Neotoma", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Ammospermophilus", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Neotoma", "Onychomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Neotoma", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Neotoma",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Onychomys",
"Chaetodipus", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Dipodomys", "Peromyscus", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Reithrodontomys", "Neotoma", "Dipodomys",
"Neotoma", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Neotoma", "Peromyscus",
"Onychomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Chaetodipus", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Ammospermophilus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Ammospermophilus", "Dipodomys", "Chaetodipus",
"Dipodomys", "Onychomys", "Ammospermophilus", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Spermophilus", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Ammospermophilus", "Neotoma", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Neotoma",
"Dipodomys", "Onychomys", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Neotoma", "Spermophilus", "Dipodomys", "Dipodomys", "Onychomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Neotoma", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Chaetodipus",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Ammospermophilus", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Chaetodipus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Ammospermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Neotoma", "Neotoma", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Ammospermophilus", "Ammospermophilus", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Ammospermophilus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Neotoma", "Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys",
"Ammospermophilus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Ammospermophilus", "Chaetodipus",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Spermophilus",
"Dipodomys", "Spermophilus", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Neotoma", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Onychomys", "Peromyscus", "Dipodomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Sigmodon", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Neotoma", "Onychomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Onychomys", "Neotoma", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Peromyscus", "Ammospermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Neotoma", "Neotoma", "Dipodomys",
"Ammospermophilus", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Neotoma", "Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Onychomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Onychomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Reithrodontomys", "Neotoma", "Neotoma",
"Dipodomys", "Onychomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Ammospermophilus",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Ammospermophilus",
"Dipodomys", "Ammospermophilus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Ammospermophilus", "Ammospermophilus", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus", "Onychomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Neotoma", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Neotoma", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Ammospermophilus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Peromyscus",
"Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Onychomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Neotoma", "Peromyscus", "Dipodomys", "Dipodomys",
"Spermophilus", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Neotoma", "Ammospermophilus", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Peromyscus", "Peromyscus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Peromyscus", "Dipodomys",
"Peromyscus", "Ammospermophilus", "Dipodomys", "Peromyscus",
"Chaetodipus", "Spermophilus", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Peromyscus", "Onychomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Onychomys", "Onychomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Peromyscus", "Neotoma", "Dipodomys",
"Onychomys", "Peromyscus", "Dipodomys", "Dipodomys", "Neotoma",
"Reithrodontomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Onychomys", "Dipodomys", "Peromyscus", "Peromyscus", "Peromyscus",
"Dipodomys", "Spermophilus", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Spermophilus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Neotoma", "Dipodomys", "Dipodomys", "Peromyscus", "Neotoma",
"Onychomys", "Peromyscus", "Dipodomys", "Peromyscus", "Neotoma",
"Dipodomys", "Chaetodipus", "Ammospermophilus", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Neotoma", "Peromyscus", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Chaetodipus", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Neotoma", "Peromyscus",
"Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Onychomys",
"Neotoma", "Dipodomys", "Peromyscus", "Neotoma", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus", "Neotoma",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Neotoma",
"Dipodomys", "Dipodomys", "Neotoma", "Peromyscus", "Onychomys",
"Dipodomys", "Reithrodontomys", "Peromyscus", "Neotoma", "Dipodomys",
"Peromyscus", "Ammospermophilus", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Ammospermophilus", "Neotoma", "Peromyscus",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Ammospermophilus", "Ammospermophilus", "Dipodomys",
"Peromyscus", "Onychomys", "Dipodomys", "Ammospermophilus", "Reithrodontomys",
"Dipodomys", "Ammospermophilus", "Reithrodontomys", "Ammospermophilus",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Chaetodipus", "Dipodomys", "Ammospermophilus", "Chaetodipus",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Spermophilus", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Peromyscus", "Reithrodontomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Ammospermophilus", "Dipodomys", "Neotoma", "Dipodomys", "Neotoma",
"Ammospermophilus", "Ammospermophilus", "Neotoma", "Ammospermophilus",
"Peromyscus", "Dipodomys", "Onychomys", "Ammospermophilus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Neotoma", "Dipodomys", "Peromyscus", "Neotoma", "Reithrodontomys",
"Onychomys", "Chaetodipus", "Dipodomys", "Neotoma", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Ammospermophilus",
"Dipodomys", "Peromyscus", "Dipodomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Neotoma",
"Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Ammospermophilus", "Dipodomys", "Dipodomys",
"Peromyscus", "Onychomys", "Peromyscus", "Dipodomys", "Chaetodipus",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Neotoma",
"Onychomys", "Ammospermophilus", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Spermophilus", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Neotoma", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Spermophilus", "Dipodomys", "Dipodomys", "Neotoma", "Chaetodipus",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Reithrodontomys", "Chaetodipus", "Spermophilus",
"Chaetodipus", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Onychomys", "Dipodomys",
"Neotoma", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Neotoma", "Neotoma", "Dipodomys", "Peromyscus", "Peromyscus",
"Reithrodontomys", "Chaetodipus", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Onychomys", "Peromyscus", "Dipodomys",
"Peromyscus", "Neotoma", "Dipodomys", "Chaetodipus", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Neotoma", "Chaetodipus", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Onychomys", "Onychomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Onychomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Spermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Spermophilus",
"Peromyscus", "Dipodomys", "Ammospermophilus", "Dipodomys", "Neotoma",
"Neotoma", "Peromyscus", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Peromyscus", "Sigmodon", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Neotoma", "Peromyscus", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Neotoma", "Reithrodontomys",
"Dipodomys", "Chaetodipus", "Peromyscus", "Dipodomys", "Neotoma",
"Peromyscus", "Dipodomys", "Spermophilus", "Onychomys", "Chaetodipus",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Dipodomys", "Chaetodipus", "Ammospermophilus",
"Neotoma", "Dipodomys", "Spermophilus", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Onychomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Onychomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Neotoma", "Peromyscus", "Neotoma", "Onychomys", "Dipodomys",
"Peromyscus", "Chaetodipus", "Reithrodontomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Sigmodon", "Spermophilus", "Dipodomys",
"Dipodomys", "Neotoma", "Reithrodontomys", "Neotoma", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Ammospermophilus", "Dipodomys",
"Onychomys", "Dipodomys", "Neotoma", "Peromyscus", "Chaetodipus",
"Onychomys", "Dipodomys", "Neotoma", "Peromyscus", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Spermophilus", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Neotoma",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Chaetodipus", "Peromyscus",
"Dipodomys", "Peromyscus", "Peromyscus", "Peromyscus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Onychomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Onychomys",
"Spermophilus", "Peromyscus", "Reithrodontomys", "Spermophilus",
"Dipodomys", "Neotoma", "Ammospermophilus", "Chaetodipus", "Dipodomys",
"Peromyscus", "Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Neotoma", "Ammospermophilus",
"Neotoma", "Chaetodipus", "Dipodomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Peromyscus", "Onychomys", "Dipodomys", "Ammospermophilus",
"Dipodomys", "Neotoma", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Neotoma", "Ammospermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Onychomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Onychomys", "Neotoma",
"Dipodomys", "Onychomys", "Dipodomys", "Chaetodipus", "Onychomys",
"Neotoma", "Chaetodipus", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Ammospermophilus", "Dipodomys", "Onychomys", "Neotoma", "Dipodomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Onychomys", "Onychomys",
"Dipodomys", "Neotoma", "Peromyscus", "Dipodomys", "Chaetodipus",
"Dipodomys", "Onychomys", "Chaetodipus", "Dipodomys", "Chaetodipus",
"Onychomys", "Chaetodipus", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Neotoma", "Onychomys",
"Dipodomys", "Ammospermophilus", "Onychomys", "Ammospermophilus",
"Dipodomys", "Peromyscus", "Ammospermophilus", "Spermophilus",
"Dipodomys", "Peromyscus", "Peromyscus", "Neotoma", "Chaetodipus",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Neotoma",
"Peromyscus", "Peromyscus", "Dipodomys", "Neotoma", "Dipodomys",
"Onychomys", "Peromyscus", "Neotoma", "Dipodomys", "Chaetodipus",
"Dipodomys", "Onychomys", "Chaetodipus", "Neotoma", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Onychomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Peromyscus", "Onychomys", "Peromyscus", "Sigmodon", "Peromyscus",
"Neotoma", "Neotoma", "Peromyscus", "Neotoma", "Peromyscus",
"Peromyscus", "Onychomys", "Dipodomys", "Peromyscus", "Neotoma",
"Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus", "Onychomys",
"Neotoma", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Neotoma", "Dipodomys",
"Reithrodontomys", "Onychomys", "Peromyscus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Reithrodontomys", "Peromyscus", "Peromyscus",
"Neotoma", "Neotoma", "Reithrodontomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Neotoma", "Peromyscus", "Dipodomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Rodent", "Peromyscus", "Neotoma", "Neotoma", "Peromyscus",
"Dipodomys", "Onychomys", "Onychomys", "Rodent", "Dipodomys",
"Neotoma", "Chaetodipus", "Peromyscus", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Peromyscus", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Perognathus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Sigmodon", "Dipodomys",
"Reithrodontomys", "Neotoma", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys",
"Neotoma", "Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys",
"Ammospermophilus", "Onychomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Neotoma", "Dipodomys", "Reithrodontomys", "Onychomys", "Neotoma",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Neotoma", "Dipodomys", "Reithrodontomys",
"Perognathus", "Onychomys", "Rodent", "Dipodomys", "Dipodomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Onychomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Peromyscus", "Sigmodon", "Peromyscus",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Neotoma", "Dipodomys",
"Neotoma", "Reithrodontomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Onychomys", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Peromyscus", "Dipodomys", "Neotoma", "Dipodomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Neotoma", "Peromyscus", "Peromyscus", "Onychomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Onychomys",
"Peromyscus", "Reithrodontomys", "Reithrodontomys", "Peromyscus",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Peromyscus", "Neotoma", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Neotoma", "Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Dipodomys", "Onychomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Onychomys", "Neotoma",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Ammospermophilus", "Dipodomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Peromyscus", "Dipodomys", "Dipodomys",
"Perognathus", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Peromyscus", "Peromyscus", "Neotoma",
"Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Neotoma", "Reithrodontomys", "Neotoma", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Perognathus", "Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Neotoma", "Dipodomys", "Peromyscus", "Onychomys",
"Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Ammospermophilus", "Neotoma", "Dipodomys",
"Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Onychomys", "Sigmodon",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Ammospermophilus", "Neotoma", "Neotoma",
"Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Peromyscus", "Onychomys", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Peromyscus", "Neotoma", "Dipodomys",
"Ammospermophilus", "Peromyscus", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Ammospermophilus", "Reithrodontomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Sigmodon", "Neotoma",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Neotoma", "Dipodomys",
"Reithrodontomys", "Rodent", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Onychomys", "Peromyscus", "Peromyscus", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Onychomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Onychomys", "Reithrodontomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Ammospermophilus", "Peromyscus",
"Reithrodontomys", "Onychomys", "Reithrodontomys", "Ammospermophilus",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Onychomys", "Reithrodontomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Neotoma",
"Neotoma", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Peromyscus", "Peromyscus", "Ammospermophilus",
"Onychomys", "Reithrodontomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Onychomys", "Onychomys", "Dipodomys", "Reithrodontomys",
"Sigmodon", "Peromyscus", "Peromyscus", "Sigmodon", "Dipodomys",
"Dipodomys", "Dipodomys", "Ammospermophilus", "Reithrodontomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Neotoma", "Dipodomys",
"Dipodomys", "Peromyscus", "Onychomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus",
"Peromyscus", "Dipodomys", "Dipodomys", "Sigmodon", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys",
"Neotoma", "Dipodomys", "Neotoma", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Neotoma",
"Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Neotoma", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Neotoma", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Reithrodontomys", "Spermophilus", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Ammospermophilus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Sigmodon", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Neotoma", "Peromyscus", "Neotoma",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Ammospermophilus", "Dipodomys", "Onychomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Sigmodon", "Peromyscus", "Dipodomys",
"Reithrodontomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Peromyscus",
"Chaetodipus", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Ammospermophilus", "Neotoma", "Dipodomys", "Onychomys",
"Peromyscus", "Onychomys", "Spermophilus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Spermophilus",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Spermophilus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Neotoma", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Peromyscus", "Onychomys", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Peromyscus", "Neotoma", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Perognathus", "Reithrodontomys", "Peromyscus", "Dipodomys",
"Reithrodontomys", "Onychomys", "Peromyscus", "Peromyscus", "Peromyscus",
"Peromyscus", "Neotoma", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Peromyscus",
"Neotoma", "Dipodomys", "Reithrodontomys", "Onychomys", "Reithrodontomys",
"Ammospermophilus", "Spermophilus", "Dipodomys", "Peromyscus",
"Sigmodon", "Reithrodontomys", "Onychomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Ammospermophilus", "Onychomys", "Neotoma", "Peromyscus", "Dipodomys",
"Onychomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Onychomys", "Neotoma", "Dipodomys", "Sigmodon",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Chaetodipus", "Peromyscus", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Neotoma", "Spermophilus", "Sigmodon",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Onychomys", "Peromyscus", "Spermophilus", "Peromyscus", "Chaetodipus",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Peromyscus", "Onychomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Chaetodipus", "Peromyscus",
"Peromyscus", "Peromyscus", "Neotoma", "Dipodomys", "Dipodomys",
"Sigmodon", "Dipodomys", "Ammospermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Sigmodon",
"Dipodomys", "Peromyscus", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Chaetodipus", "Sigmodon", "Spermophilus", "Chaetodipus",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Ammospermophilus", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus",
"Peromyscus", "Onychomys", "Peromyscus", "Reithrodontomys", "Neotoma",
"Dipodomys", "Chaetodipus", "Dipodomys", "Ammospermophilus",
"Ammospermophilus", "Dipodomys", "Dipodomys", "Neotoma", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Neotoma", "Dipodomys", "Peromyscus", "Dipodomys", "Neotoma",
"Onychomys", "Peromyscus", "Dipodomys", "Neotoma", "Onychomys",
"Neotoma", "Reithrodontomys", "Neotoma", "Reithrodontomys", "Dipodomys",
"Onychomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Reithrodontomys", "Neotoma", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Peromyscus", "Peromyscus", "Dipodomys",
"Sigmodon", "Chaetodipus", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Spermophilus", "Ammospermophilus", "Peromyscus",
"Dipodomys", "Neotoma", "Peromyscus", "Onychomys", "Dipodomys",
"Spermophilus", "Dipodomys", "Chaetodipus", "Onychomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Neotoma", "Onychomys", "Reithrodontomys",
"Chaetodipus", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Sigmodon", "Dipodomys", "Chaetodipus", "Dipodomys",
"Peromyscus", "Neotoma", "Dipodomys", "Reithrodontomys", "Chaetodipus",
"Onychomys", "Peromyscus", "Dipodomys", "Onychomys", "Peromyscus",
"Neotoma", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Peromyscus",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Neotoma", "Onychomys", "Dipodomys", "Neotoma",
"Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys", "Neotoma",
"Dipodomys", "Peromyscus", "Chaetodipus", "Peromyscus", "Onychomys",
"Dipodomys", "Dipodomys", "Neotoma", "Sigmodon", "Peromyscus",
"Peromyscus", "Neotoma", "Peromyscus", "Chaetodipus", "Dipodomys",
"Peromyscus", "Onychomys", "Dipodomys", "Onychomys", "Peromyscus",
"Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys", "Chaetodipus",
"Chaetodipus", "Sigmodon", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Dipodomys", "Neotoma", "Peromyscus", "Dipodomys",
"Peromyscus", "Neotoma", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Chaetodipus", "Chaetodipus", "Neotoma", "Onychomys", "Dipodomys",
"Neotoma", "Onychomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Peromyscus", "Neotoma", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Peromyscus", "Dipodomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys", "Neotoma",
"Peromyscus", "Peromyscus", "Dipodomys", "Neotoma", "Chaetodipus",
"Dipodomys", "Peromyscus", "Peromyscus", "Onychomys", "Dipodomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Neotoma", "Onychomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys", "Neotoma",
"Chaetodipus", "Dipodomys", "Neotoma", "Chaetodipus", "Peromyscus",
"Dipodomys", "Chaetodipus", "Ammospermophilus", "Chaetodipus",
"Chaetodipus", "Neotoma", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Onychomys", "Onychomys", "Reithrodontomys", "Peromyscus",
"Peromyscus", "Dipodomys", "Chaetodipus", "Sigmodon", "Dipodomys",
"Peromyscus", "Chaetodipus", "Chaetodipus", "Dipodomys", "Neotoma",
"Neotoma", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Sigmodon", "Dipodomys", "Neotoma", "Spermophilus",
"Dipodomys", "Neotoma", "Chaetodipus", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus", "Peromyscus",
"Chaetodipus", "Peromyscus", "Peromyscus", "Chaetodipus", "Dipodomys",
"Onychomys", "Chaetodipus", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Chaetodipus", "Chaetodipus", "Dipodomys", "Ammospermophilus",
"Peromyscus", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Sigmodon", "Chaetodipus", "Dipodomys",
"Onychomys", "Chaetodipus", "Dipodomys", "Neotoma", "Onychomys",
"Onychomys", "Neotoma", "Spermophilus", "Dipodomys", "Peromyscus",
"Peromyscus", "Onychomys", "Reithrodontomys", "Dipodomys", "Chaetodipus",
"Peromyscus", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Chaetodipus", "Dipodomys", "Neotoma", "Peromyscus", "Dipodomys",
"Peromyscus", "Neotoma", "Neotoma", "Sigmodon", "Dipodomys",
"Onychomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Spermophilus",
"Onychomys", "Spermophilus", "Dipodomys", "Peromyscus", "Neotoma",
"Spermophilus", "Peromyscus", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Peromyscus", "Dipodomys",
"Peromyscus", "Chaetodipus", "Onychomys", "Onychomys", "Onychomys",
"Onychomys", "Dipodomys", "Neotoma", "Dipodomys", "Spermophilus",
"Spermophilus", "Dipodomys", "Reithrodontomys", "Onychomys",
"Dipodomys", "Neotoma", "Peromyscus", "Dipodomys", "Spermophilus",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Onychomys", "Peromyscus", "Onychomys", "Peromyscus", "Neotoma",
"Peromyscus", "Dipodomys", "Peromyscus", "Peromyscus", "Neotoma",
"Peromyscus", "Sigmodon", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Sigmodon", "Onychomys", "Onychomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Neotoma", "Dipodomys", "Onychomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Ammospermophilus",
"Dipodomys", "Onychomys", "Peromyscus", "Chaetodipus", "Peromyscus",
"Peromyscus", "Peromyscus", "Dipodomys", "Peromyscus", "Onychomys",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Neotoma",
"Neotoma", "Chaetodipus", "Spermophilus", "Neotoma", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Spermophilus",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Dipodomys", "Ammospermophilus", "Dipodomys", "Peromyscus",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Onychomys", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Onychomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Onychomys", "Dipodomys", "Neotoma", "Onychomys", "Peromyscus",
"Peromyscus", "Onychomys", "Reithrodontomys", "Onychomys", "Sigmodon",
"Neotoma", "Neotoma", "Peromyscus", "Sigmodon", "Peromyscus",
"Dipodomys", "Onychomys", "Onychomys", "Peromyscus", "Peromyscus",
"Peromyscus", "Reithrodontomys", "Reithrodontomys", "Peromyscus",
"Ammospermophilus", "Dipodomys", "Sigmodon", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Peromyscus", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys", "Neotoma",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Peromyscus", "Reithrodontomys", "Peromyscus", "Onychomys", "Dipodomys",
"Peromyscus", "Onychomys", "Sigmodon", "Peromyscus", "Onychomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Onychomys",
"Sigmodon", "Neotoma", "Neotoma", "Sigmodon", "Dipodomys", "Onychomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Onychomys", "Dipodomys",
"Dipodomys", "Onychomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Perognathus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Neotoma", "Dipodomys",
"Peromyscus", "Peromyscus", "Onychomys", "Peromyscus", "Dipodomys",
"Onychomys", "Peromyscus", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Onychomys", "Neotoma", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Peromyscus",
"Neotoma", "Onychomys", "Onychomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys", "Neotoma",
"Reithrodontomys", "Peromyscus", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Neotoma", "Peromyscus", "Onychomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys",
"Peromyscus", "Reithrodontomys", "Neotoma", "Reithrodontomys",
"Ammospermophilus", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Onychomys", "Peromyscus", "Reithrodontomys",
"Sigmodon", "Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Neotoma", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Ammospermophilus", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Sigmodon", "Onychomys", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Onychomys", "Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Neotoma",
"Peromyscus", "Dipodomys", "Peromyscus", "Onychomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Onychomys", "Peromyscus", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Sigmodon", "Reithrodontomys",
"Onychomys", "Reithrodontomys", "Neotoma", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Onychomys", "Reithrodontomys", "Peromyscus", "Ammospermophilus",
"Reithrodontomys", "Reithrodontomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Peromyscus", "Onychomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Neotoma", "Dipodomys", "Peromyscus", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Sigmodon", "Sigmodon",
"Dipodomys", "Onychomys", "Dipodomys", "Onychomys", "Dipodomys",
"Onychomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Peromyscus", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Sigmodon", "Onychomys", "Sigmodon", "Reithrodontomys",
"Onychomys", "Dipodomys", "Neotoma", "Peromyscus", "Peromyscus",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Sigmodon",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Neotoma", "Onychomys", "Onychomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Ammospermophilus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Peromyscus", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Onychomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Peromyscus", "Neotoma",
"Onychomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Onychomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Ammospermophilus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Peromyscus", "Reithrodontomys", "Onychomys", "Peromyscus", "Reithrodontomys",
"Peromyscus", "Onychomys", "Reithrodontomys", "Peromyscus", "Sigmodon",
"Neotoma", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Neotoma", "Ammospermophilus", "Ammospermophilus", "Peromyscus",
"Ammospermophilus", "Reithrodontomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Onychomys", "Onychomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys", "Peromyscus",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Onychomys", "Peromyscus",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Reithrodontomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Sigmodon", "Dipodomys", "Sigmodon",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Ammospermophilus", "Neotoma",
"Peromyscus", "Neotoma", "Reithrodontomys", "Neotoma", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Reithrodontomys", "Peromyscus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Onychomys", "Reithrodontomys", "Reithrodontomys", "Onychomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Ammospermophilus", "Peromyscus", "Onychomys", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Sigmodon", "Reithrodontomys", "Dipodomys", "Onychomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Onychomys", "Peromyscus", "Onychomys", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Onychomys",
"Peromyscus", "Onychomys", "Onychomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Onychomys", "Onychomys",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Neotoma",
"Peromyscus", "Onychomys", "Reithrodontomys", "Onychomys", "Neotoma",
"Reithrodontomys", "Neotoma", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Peromyscus", "Onychomys",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Peromyscus",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Onychomys",
"Peromyscus", "Peromyscus", "Peromyscus", "Peromyscus", "Sigmodon",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Sigmodon", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Reithrodontomys", "Onychomys",
"Peromyscus", "Reithrodontomys", "Reithrodontomys", "Sigmodon",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Onychomys",
"Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Sigmodon", "Reithrodontomys",
"Neotoma", "Onychomys", "Dipodomys", "Chaetodipus", "Peromyscus",
"Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Sigmodon", "Peromyscus", "Reithrodontomys", "Peromyscus", "Reithrodontomys",
"Onychomys", "Peromyscus", "Neotoma", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Ammospermophilus", "Reithrodontomys", "Dipodomys",
"Sigmodon", "Dipodomys", "Dipodomys", "Sigmodon", "Dipodomys",
"Dipodomys", "Onychomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Onychomys", "Neotoma", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Spermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Spermophilus",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Sigmodon", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Sigmodon", "Onychomys",
"Chaetodipus", "Peromyscus", "Dipodomys", "Peromyscus", "Neotoma",
"Neotoma", "Sigmodon", "Dipodomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Peromyscus", "Peromyscus", "Reithrodontomys",
"Sigmodon", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Dipodomys", "Spermophilus",
"Reithrodontomys", "Chaetodipus", "Dipodomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Onychomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Onychomys",
"Reithrodontomys", "Dipodomys", "Onychomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Onychomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Chaetodipus",
"Onychomys", "Chaetodipus", "Reithrodontomys", "Chaetodipus",
"Dipodomys", "Reithrodontomys", "Onychomys", "Reithrodontomys",
"Chaetodipus", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Sigmodon", "Neotoma", "Dipodomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Reithrodontomys", "Neotoma",
"Peromyscus", "Sigmodon", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Neotoma", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Sigmodon", "Reithrodontomys", "Neotoma", "Dipodomys", "Dipodomys",
"Ammospermophilus", "Reithrodontomys", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Peromyscus", "Reithrodontomys", "Dipodomys", "Chaetodipus",
"Dipodomys", "Peromyscus", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Onychomys", "Ammospermophilus", "Dipodomys",
"Reithrodontomys", "Neotoma", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Neotoma", "Peromyscus", "Dipodomys", "Onychomys",
"Neotoma", "Peromyscus", "Sigmodon", "Neotoma", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Onychomys",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Sigmodon", "Reithrodontomys", "Reithrodontomys", "Onychomys",
"Reithrodontomys", "Onychomys", "Peromyscus", "Neotoma", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Peromyscus", "Dipodomys", "Neotoma",
"Peromyscus", "Peromyscus", "Dipodomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Sigmodon", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Reithrodontomys", "Reithrodontomys", "Neotoma",
"Onychomys", "Reithrodontomys", "Sigmodon", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Peromyscus", "Neotoma", "Onychomys",
"Chaetodipus", "Sigmodon", "Chaetodipus", "Reithrodontomys",
"Chaetodipus", "Dipodomys", "Sigmodon", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Spermophilus",
"Dipodomys", "Peromyscus", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Reithrodontomys", "Peromyscus", "Onychomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Sigmodon", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Sigmodon", "Reithrodontomys", "Ammospermophilus",
"Neotoma", "Peromyscus", "Reithrodontomys", "Dipodomys", "Peromyscus",
"Reithrodontomys", "Peromyscus", "Peromyscus", "Peromyscus",
"Reithrodontomys", "Neotoma", "Peromyscus", "Neotoma", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Sigmodon",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Neotoma",
"Ammospermophilus", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Neotoma", "Reithrodontomys", "Peromyscus", "Ammospermophilus",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Peromyscus", "Sigmodon", "Peromyscus", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Onychomys", "Peromyscus", "Peromyscus", "Onychomys", "Peromyscus",
"Neotoma", "Sigmodon", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Sigmodon", "Reithrodontomys",
"Spermophilus", "Dipodomys", "Dipodomys", "Spermophilus", "Sigmodon",
"Reithrodontomys", "Peromyscus", "Sigmodon", "Dipodomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Ammospermophilus", "Onychomys", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Peromyscus", "Ammospermophilus", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Spermophilus", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Chaetodipus", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Reithrodontomys", "Peromyscus", "Peromyscus", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Peromyscus", "Spermophilus",
"Reithrodontomys", "Dipodomys", "Sigmodon", "Neotoma", "Reithrodontomys",
"Neotoma", "Peromyscus", "Reithrodontomys", "Spermophilus", "Sigmodon",
"Reithrodontomys", "Ammospermophilus", "Neotoma", "Neotoma",
"Reithrodontomys", "Dipodomys", "Onychomys", "Reithrodontomys",
"Reithrodontomys", "Sigmodon", "Reithrodontomys", "Ammospermophilus",
"Neotoma", "Ammospermophilus", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Spermophilus", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Neotoma", "Dipodomys", "Dipodomys", "Onychomys", "Spermophilus",
"Onychomys", "Reithrodontomys", "Ammospermophilus", "Neotoma",
"Spermophilus", "Ammospermophilus", "Reithrodontomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Sigmodon", "Neotoma",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys", "Sigmodon",
"Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Onychomys",
"Reithrodontomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Ammospermophilus", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Ammospermophilus",
"Chaetodipus", "Spermophilus", "Sigmodon", "Spermophilus", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Sigmodon", "Dipodomys", "Onychomys",
"Dipodomys", "Reithrodontomys", "Neotoma", "Reithrodontomys",
"Spermophilus", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Onychomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Onychomys", "Onychomys", "Chaetodipus",
"Peromyscus", "Dipodomys", "Peromyscus", "Chaetodipus", "Sigmodon",
"Reithrodontomys", "Neotoma", "Onychomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Neotoma", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Neotoma", "Peromyscus", "Dipodomys", "Chaetodipus",
"Peromyscus", "Peromyscus", "Peromyscus", "Sigmodon", "Chaetodipus",
"Reithrodontomys", "Onychomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Onychomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Spermophilus", "Reithrodontomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Chaetodipus",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Neotoma",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Onychomys",
"Ammospermophilus", "Reithrodontomys", "Dipodomys", "Neotoma",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Chaetodipus",
"Onychomys", "Onychomys", "Dipodomys", "Chaetodipus", "Perognathus",
"Dipodomys", "Onychomys", "Perognathus", "Sigmodon", "Chaetodipus",
"Onychomys", "Dipodomys", "Onychomys", "Dipodomys", "Dipodomys",
"Onychomys", "Peromyscus", "Dipodomys", "Onychomys", "Onychomys",
"Spermophilus", "Onychomys", "Dipodomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Onychomys", "Peromyscus", "Neotoma", "Chaetodipus",
"Dipodomys", "Onychomys", "Peromyscus", "Sigmodon", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Dipodomys", "Dipodomys",
"Onychomys", "Neotoma", "Dipodomys", "Chaetodipus", "Dipodomys",
"Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys", "Dipodomys",
"Sigmodon", "Dipodomys", "Sigmodon", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Chaetodipus", "Dipodomys", "Dipodomys",
"Ammospermophilus", "Chaetodipus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Neotoma", "Dipodomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Ammospermophilus",
"Dipodomys", "Peromyscus", "Onychomys", "Dipodomys", "Onychomys",
"Onychomys", "Onychomys", "Dipodomys", "Dipodomys", "Peromyscus",
"Dipodomys", "Onychomys", "Peromyscus", "Dipodomys", "Dipodomys",
"Chaetodipus", "Sigmodon", "Onychomys", "Dipodomys", "Sigmodon",
"Dipodomys", "Dipodomys", "Reithrodontomys", "Onychomys", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Chaetodipus", "Neotoma", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Spermophilus", "Dipodomys",
"Sigmodon", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Onychomys", "Peromyscus", "Dipodomys", "Chaetodipus", "Dipodomys",
"Peromyscus", "Reithrodontomys", "Dipodomys", "Neotoma", "Chaetodipus",
"Chaetodipus", "Dipodomys", "Onychomys", "Onychomys", "Reithrodontomys",
"Dipodomys", "Peromyscus", "Chaetodipus", "Dipodomys", "Dipodomys",
"Peromyscus", "Onychomys", "Peromyscus", "Perognathus", "Perognathus",
"Ammospermophilus", "Dipodomys", "Reithrodontomys", "Perognathus",
"Dipodomys", "Dipodomys", "Onychomys", "Ammospermophilus", "Peromyscus",
"Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Neotoma", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Onychomys", "Dipodomys", "Peromyscus",
"Peromyscus", "Reithrodontomys", "Chaetodipus", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Onychomys", "Baiomys", "Baiomys", "Peromyscus", "Perognathus",
"Onychomys", "Reithrodontomys", "Reithrodontomys", "Peromyscus",
"Neotoma", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Onychomys", "Reithrodontomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Neotoma", "Peromyscus", "Reithrodontomys",
"Onychomys", "Reithrodontomys", "Dipodomys", "Peromyscus", "Neotoma",
"Reithrodontomys", "Onychomys", "Perognathus", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Perognathus", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Onychomys", "Perognathus", "Neotoma", "Onychomys",
"Neotoma", "Dipodomys", "Reithrodontomys", "Peromyscus", "Dipodomys",
"Chaetodipus", "Dipodomys", "Dipodomys", "Reithrodontomys", "Peromyscus",
"Reithrodontomys", "Dipodomys", "Peromyscus", "Peromyscus", "Onychomys",
"Sigmodon", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Perognathus", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Sigmodon", "Onychomys", "Dipodomys", "Onychomys", "Dipodomys",
"Reithrodontomys", "Onychomys", "Peromyscus", "Onychomys", "Ammospermophilus",
"Onychomys", "Dipodomys", "Onychomys", "Chaetodipus", "Dipodomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Onychomys",
"Ammospermophilus", "Dipodomys", "Onychomys", "Reithrodontomys",
"Peromyscus", "Dipodomys", "Dipodomys", "Onychomys", "Dipodomys",
"Dipodomys", "Sigmodon", "Onychomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Onychomys", "Perognathus", "Reithrodontomys", "Chaetodipus",
"Onychomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Onychomys", "Reithrodontomys", "Chaetodipus", "Onychomys", "Dipodomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys",
"Reithrodontomys", "Chaetodipus", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Chaetodipus", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Onychomys", "Peromyscus",
"Onychomys", "Sigmodon", "Sigmodon", "Perognathus", "Onychomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Neotoma", "Reithrodontomys", "Dipodomys",
"Peromyscus", "Peromyscus", "Dipodomys", "Peromyscus", "Onychomys",
"Reithrodontomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Perognathus", "Perognathus", "Dipodomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Perognathus", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Reithrodontomys", "Reithrodontomys",
"Reithrodontomys", "Neotoma", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Peromyscus", "Peromyscus",
"Onychomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Reithrodontomys", "Reithrodontomys", "Peromyscus", "Reithrodontomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Peromyscus", "Peromyscus",
"Dipodomys", "Reithrodontomys", "Sigmodon", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Peromyscus", "Dipodomys", "Reithrodontomys", "Dipodomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Neotoma", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Dipodomys", "Onychomys",
"Dipodomys", "Dipodomys", "Peromyscus", "Reithrodontomys", "Baiomys",
"Reithrodontomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Dipodomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Onychomys", "Dipodomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Dipodomys", "Reithrodontomys",
"Dipodomys", "Reithrodontomys", "Reithrodontomys", "Dipodomys",
"Dipodomys", "Dipodomys"), species = c("albigula", "albigula",
"merriami", "merriami", "merriami", "flavus", "eremicus", "merriami",
"merriami", "flavus", "spectabilis", "merriami", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "penicillatus",
"flavus", "spectabilis", "merriami", "albigula", "merriami",
"hispidus", "merriami", "merriami", "merriami", "merriami", "penicillatus",
"spectabilis", "merriami", "merriami", "merriami", "merriami",
"merriami", "torridus", "merriami", "albigula", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "penicillatus", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "eremicus", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"ordii", "flavus", "sp.", "merriami", "albigula", "spectabilis",
"flavus", "merriami", "spectabilis", "spilosoma", "flavus", "merriami",
"spectabilis", "flavus", "merriami", "merriami", "merriami",
"merriami", "merriami", "flavus", "merriami", "penicillatus",
"merriami", "spectabilis", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"albigula", "albigula", "penicillatus", "merriami", "spectabilis",
"merriami", "merriami", "flavus", "merriami", "merriami", "merriami",
"sp.", "merriami", "merriami", "merriami", "albigula", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "spectabilis",
"merriami", "flavus", "merriami", "merriami", "flavus", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "merriami", "spectabilis", "spectabilis", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "merriami", "penicillatus", "merriami", "spectabilis",
"sp.", "merriami", "merriami", "merriami", "merriami", "albigula",
"flavus", "merriami", "merriami", "merriami", "spectabilis",
"sp.", "merriami", "merriami", "merriami", "merriami", "spectabilis",
"merriami", "spectabilis", "sp.", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "spectabilis", "merriami", "eremicus",
"albigula", "spectabilis", "flavus", "merriami", "merriami",
"merriami", "spectabilis", "spectabilis", "merriami", "merriami",
"merriami", "spectabilis", "spectabilis", "spectabilis", "merriami",
"merriami", "merriami", "spectabilis", "flavus", "merriami",
"albigula", "merriami", "flavus", "penicillatus", "flavus", "merriami",
"spectabilis", "merriami", "spectabilis", "spectabilis", "albigula",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"spectabilis", "spectabilis", "eremicus", "spectabilis", "spectabilis",
"spectabilis", "sp.", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "torridus", "merriami", "spectabilis", "merriami",
"spectabilis", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "eremicus",
"merriami", "spectabilis", "merriami", "albigula", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "albigula",
"merriami", "leucogaster", "merriami", "spectabilis", "leucogaster",
"spectabilis", "eremicus", "merriami", "albigula", "albigula",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "ordii", "merriami",
"ordii", "merriami", "torridus", "albigula", "merriami", "torridus",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "spectabilis",
"spectabilis", "megalotis", "merriami", "merriami", "albigula",
"merriami", "merriami", "ordii", "merriami", "merriami", "merriami",
"leucogaster", "spectabilis", "ordii", "spectabilis", "merriami",
"spectabilis", "merriami", "spectabilis", "flavus", "sp.", "merriami",
"spectabilis", "merriami", "ordii", "merriami", "spectabilis",
"merriami", "spectabilis", "merriami", "flavus", "albigula",
"merriami", "merriami", "merriami", "merriami", "albigula", "merriami",
"leucogaster", "merriami", "albigula", "merriami", "torridus",
"ordii", "spectabilis", "flavus", "merriami", "merriami", "merriami",
"spectabilis", "albigula", "merriami", "merriami", "leucogaster",
"spectabilis", "flavus", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "flavus", "flavus", "spectabilis",
"ordii", "merriami", "merriami", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "leucogaster", "leucogaster", "merriami",
"spectabilis", "albigula", "flavus", "spectabilis", "albigula",
"spectabilis", "merriami", "merriami", "megalotis", "spectabilis",
"merriami", "leucogaster", "merriami", "spectabilis", "albigula",
"spectabilis", "flavus", "merriami", "spectabilis", "merriami",
"spectabilis", "spectabilis", "ordii", "merriami", "merriami",
"spectabilis", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "ordii", "merriami", "flavus", "torridus",
"flavus", "merriami", "flavus", "albigula", "merriami", "merriami",
"merriami", "merriami", "flavus", "leucogaster", "torridus",
"merriami", "merriami", "leucogaster", "torridus", "merriami",
"spectabilis", "merriami", "ordii", "spectabilis", "torridus",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"spectabilis", "spectabilis", "albigula", "spectabilis", "ordii",
"merriami", "albigula", "flavus", "torridus", "spectabilis",
"torridus", "flavus", "albigula", "spectabilis", "spectabilis",
"torridus", "merriami", "spectabilis", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "albigula", "merriami",
"merriami", "torridus", "merriami", "spectabilis", "spectabilis",
"spectabilis", "torridus", "albigula", "merriami", "torridus",
"flavus", "spectabilis", "torridus", "torridus", "merriami",
"leucogaster", "merriami", "albigula", "merriami", "merriami",
"albigula", "flavus", "merriami", "spectabilis", "leucogaster",
"flavus", "ordii", "merriami", "eremicus", "merriami", "merriami",
"flavus", "merriami", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "merriami", "merriami",
"albigula", "flavus", "merriami", "torridus", "torridus", "merriami",
"merriami", "spectabilis", "merriami", "merriami", "spectabilis",
"leucogaster", "merriami", "albigula", "torridus", "spectabilis",
"merriami", "merriami", "spectabilis", "spectabilis", "spectabilis",
"albigula", "spectabilis", "merriami", "merriami", "spectabilis",
"merriami", "spectabilis", "spectabilis", "spectabilis", "albigula",
"merriami", "merriami", "torridus", "spectabilis", "torridus",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"merriami", "torridus", "merriami", "merriami", "merriami", "torridus",
"spectabilis", "merriami", "sp.", "albigula", "merriami", "flavus",
"merriami", "merriami", "merriami", "merriami", "merriami", "spectabilis",
"merriami", "torridus", "torridus", "merriami", "merriami", "merriami",
"torridus", "eremicus", "merriami", "merriami", "spectabilis",
"merriami", "torridus", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "merriami", "merriami", "spectabilis", "merriami",
"spectabilis", "flavus", "spectabilis", "torridus", "merriami",
"merriami", "leucogaster", "merriami", "merriami", "albigula",
"torridus", "torridus", "spectabilis", "merriami", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "merriami", "albigula", "spectabilis",
"merriami", "merriami", "flavus", "merriami", "flavus", "spectabilis",
"merriami", "albigula", "spectabilis", "spectabilis", "torridus",
"torridus", "merriami", "albigula", "flavus", "torridus", "merriami",
"merriami", "leucogaster", "merriami", "torridus", "spectabilis",
"torridus", "eremicus", "flavus", "eremicus", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "merriami", "spectabilis",
"torridus", "flavus", "merriami", "spectabilis", "flavus", "spectabilis",
"spectabilis", "spectabilis", "merriami", "spectabilis", "merriami",
"torridus", "merriami", "megalotis", "merriami", "merriami",
"merriami", "merriami", "merriami", "leucogaster", "merriami",
"spectabilis", "merriami", "spectabilis", "torridus", "merriami",
"torridus", "spectabilis", "merriami", "merriami", "torridus",
"merriami", "merriami", "merriami", "merriami", "ordii", "merriami",
"spectabilis", "merriami", "leucogaster", "torridus", "merriami",
"spectabilis", "merriami", "merriami", "spectabilis", "torridus",
"merriami", "merriami", "torridus", "albigula", "merriami", "flavus",
"eremicus", "leucogaster", "spectabilis", "eremicus", "merriami",
"eremicus", "merriami", "torridus", "merriami", "albigula", "spectabilis",
"flavus", "merriami", "spectabilis", "merriami", "merriami",
"albigula", "torridus", "merriami", "merriami", "spectabilis",
"spectabilis", "spectabilis", "spilosoma", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "leucogaster", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"torridus", "merriami", "merriami", "merriami", "merriami", "spectabilis",
"torridus", "merriami", "spectabilis", "spectabilis", "merriami",
"spectabilis", "spectabilis", "spectabilis", "merriami", "spectabilis",
"merriami", "ordii", "spectabilis", "spectabilis", "spectabilis",
"merriami", "merriami", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "spectabilis", "merriami", "spectabilis",
"spectabilis", "merriami", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "spectabilis", "merriami", "merriami",
"spectabilis", "merriami", "merriami", "albigula", "torridus",
"merriami", "merriami", "spectabilis", "merriami", "flavus",
"merriami", "spectabilis", "spectabilis", "spectabilis", "merriami",
"spectabilis", "merriami", "spectabilis", "merriami", "spectabilis",
"spectabilis", "albigula", "spectabilis", "merriami", "albigula",
"merriami", "spectabilis", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "merriami", "spilosoma", "torridus",
"leucogaster", "leucogaster", "spectabilis", "spectabilis", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "albigula",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "merriami",
"albigula", "merriami", "spectabilis", "merriami", "merriami",
"spectabilis", "maniculatus", "spectabilis", "merriami", "albigula",
"merriami", "merriami", "spectabilis", "spectabilis", "merriami",
"spectabilis", "spectabilis", "merriami", "spectabilis", "spectabilis",
"penicillatus", "merriami", "merriami", "merriami", "spectabilis",
"spectabilis", "merriami", "spectabilis", "merriami", "merriami",
"merriami", "ordii", "merriami", "merriami", "spectabilis", "spectabilis",
"merriami", "merriami", "torridus", "spectabilis", "spectabilis",
"torridus", "ordii", "flavus", "spectabilis", "spectabilis",
"merriami", "merriami", "merriami", "ordii", "spectabilis", "spectabilis",
"spectabilis", "merriami", "spectabilis", "merriami", "penicillatus",
"spectabilis", "spectabilis", "merriami", "spectabilis", "spectabilis",
"merriami", "merriami", "spilosoma", "spectabilis", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "ordii", "leucogaster",
"merriami", "spectabilis", "merriami", "spectabilis", "spectabilis",
"merriami", "merriami", "spectabilis", "merriami", "ordii", "spectabilis",
"spectabilis", "merriami", "spectabilis", "merriami", "spectabilis",
"flavus", "flavus", "merriami", "albigula", "spectabilis", "spectabilis",
"spectabilis", "merriami", "flavus", "ordii", "torridus", "merriami",
"spectabilis", "penicillatus", "spectabilis", "merriami", "spectabilis",
"spectabilis", "albigula", "penicillatus", "merriami", "spectabilis",
"merriami", "flavus", "spectabilis", "spectabilis", "spectabilis",
"merriami", "spectabilis", "merriami", "spilosoma", "spectabilis",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"torridus", "spectabilis", "spectabilis", "spectabilis", "ordii",
"spectabilis", "spectabilis", "spectabilis", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "merriami", "spectabilis",
"spectabilis", "merriami", "leucogaster", "torridus", "merriami",
"albigula", "spectabilis", "penicillatus", "merriami", "merriami",
"merriami", "spectabilis", "spectabilis", "merriami", "merriami",
"spectabilis", "merriami", "ordii", "merriami", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "merriami", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "spectabilis",
"spectabilis", "merriami", "spectabilis", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "flavus",
"merriami", "spectabilis", "torridus", "leucogaster", "spectabilis",
"ordii", "merriami", "penicillatus", "spectabilis", "penicillatus",
"spectabilis", "merriami", "albigula", "merriami", "albigula",
"merriami", "merriami", "spectabilis", "albigula", "penicillatus",
"merriami", "merriami", "spectabilis", "merriami", "spectabilis",
"merriami", "merriami", "spectabilis", "spectabilis", "merriami",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"merriami", "spectabilis", "spectabilis", "spectabilis", "eremicus",
"merriami", "eremicus", "spectabilis", "merriami", "merriami",
"torridus", "spectabilis", "penicillatus", "leucogaster", "spectabilis",
"albigula", "merriami", "merriami", "spectabilis", "merriami",
"flavus", "merriami", "penicillatus", "merriami", "spectabilis",
"ordii", "spectabilis", "albigula", "maniculatus", "spectabilis",
"merriami", "penicillatus", "merriami", "merriami", "merriami",
"merriami", "maniculatus", "spectabilis", "leucogaster", "spectabilis",
"torridus", "merriami", "albigula", "merriami", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "merriami", "spectabilis",
"spectabilis", "merriami", "spectabilis", "merriami", "spectabilis",
"flavus", "spectabilis", "spectabilis", "albigula", "spectabilis",
"spectabilis", "merriami", "albigula", "spectabilis", "merriami",
"spectabilis", "spectabilis", "merriami", "leucogaster", "leucogaster",
"merriami", "merriami", "merriami", "merriami", "spectabilis",
"penicillatus", "spectabilis", "merriami", "merriami", "spectabilis",
"spectabilis", "leucogaster", "spectabilis", "spectabilis", "leucogaster",
"spectabilis", "merriami", "leucogaster", "albigula", "merriami",
"spectabilis", "spectabilis", "penicillatus", "eremicus", "merriami",
"albigula", "spectabilis", "merriami", "merriami", "merriami",
"spectabilis", "ordii", "spectabilis", "spectabilis", "spectabilis",
"flavus", "merriami", "merriami", "flavus", "eremicus", "merriami",
"albigula", "penicillatus", "torridus", "spectabilis", "spectabilis",
"spectabilis", "merriami", "penicillatus", "merriami", "merriami",
"flavus", "spectabilis", "flavus", "leucogaster", "spectabilis",
"torridus", "penicillatus", "torridus", "spectabilis", "spectabilis",
"eremicus", "merriami", "merriami", "spectabilis", "spectabilis",
"merriami", "flavus", "merriami", "albigula", "merriami", "merriami",
"leucogaster", "spectabilis", "merriami", "torridus", "penicillatus",
"merriami", "merriami", "spectabilis", "albigula", "merriami",
"spectabilis", "penicillatus", "flavus", "spectabilis", "spectabilis",
"spectabilis", "merriami", "merriami", "spectabilis", "merriami",
"spectabilis", "spectabilis", "flavus", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "spilosoma", "flavus",
"eremicus", "ordii", "albigula", "torridus", "spectabilis", "torridus",
"merriami", "merriami", "merriami", "spectabilis", "spectabilis",
"penicillatus", "eremicus", "spectabilis", "spectabilis", "spectabilis",
"merriami", "merriami", "eremicus", "merriami", "merriami", "spectabilis",
"merriami", "spectabilis", "spectabilis", "merriami", "merriami",
"torridus", "merriami", "leucogaster", "spectabilis", "spectabilis",
"leucogaster", "merriami", "penicillatus", "albigula", "merriami",
"ordii", "merriami", "spectabilis", "merriami", "spectabilis",
"spectabilis", "ordii", "merriami", "merriami", "spectabilis",
"spectabilis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "albigula", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "flavus", "merriami", "albigula",
"merriami", "merriami", "flavus", "penicillatus", "merriami",
"torridus", "torridus", "merriami", "flavus", "spectabilis",
"merriami", "spectabilis", "albigula", "spilosoma", "spectabilis",
"spectabilis", "spectabilis", "flavus", "spectabilis", "penicillatus",
"merriami", "merriami", "spectabilis", "flavus", "spectabilis",
"albigula", "penicillatus", "spectabilis", "albigula", "penicillatus",
"merriami", "flavus", "torridus", "merriami", "merriami", "spectabilis",
"leucogaster", "flavus", "spectabilis", "spilosoma", "merriami",
"torridus", "leucogaster", "merriami", "merriami", "eremicus",
"merriami", "merriami", "spectabilis", "spectabilis", "flavus",
"spectabilis", "merriami", "spectabilis", "spectabilis", "torridus",
"merriami", "merriami", "merriami", "ordii", "leucogaster", "spectabilis",
"spectabilis", "leucogaster", "spectabilis", "merriami", "merriami",
"merriami", "ordii", "merriami", "torridus", "torridus", "spectabilis",
"spectabilis", "ordii", "spectabilis", "merriami", "flavus",
"merriami", "spectabilis", "merriami", "spectabilis", "leucogaster",
"merriami", "merriami", "hispidus", "torridus", "merriami", "merriami",
"merriami", "merriami", "torridus", "merriami", "merriami", "harrisi",
"spectabilis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "albigula", "spectabilis", "leucogaster", "merriami",
"leucogaster", "merriami", "spectabilis", "merriami", "merriami",
"torridus", "spectabilis", "merriami", "albigula", "merriami",
"eremicus", "merriami", "merriami", "spilosoma", "merriami",
"torridus", "torridus", "leucogaster", "megalotis", "leucogaster",
"merriami", "leucogaster", "leucogaster", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"albigula", "leucogaster", "merriami", "torridus", "megalotis",
"leucogaster", "merriami", "spectabilis", "merriami", "spectabilis",
"ordii", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"leucogaster", "ordii", "leucogaster", "leucogaster", "spectabilis",
"leucogaster", "merriami", "albigula", "merriami", "merriami",
"merriami", "leucogaster", "merriami", "spectabilis", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "spectabilis",
"spectabilis", "merriami", "merriami", "albigula", "spectabilis",
"leucogaster", "torridus", "merriami", "merriami", "merriami",
"spectabilis", "merriami", "merriami", "spectabilis", "torridus",
"torridus", "leucogaster", "leucogaster", "merriami", "leucogaster",
"torridus", "torridus", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"ordii", "leucogaster", "merriami", "leucogaster", "merriami",
"merriami", "leucogaster", "merriami", "leucogaster", "leucogaster",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "torridus", "torridus",
"merriami", "merriami", "spectabilis", "spectabilis", "merriami",
"merriami", "spectabilis", "merriami", "torridus", "merriami",
"merriami", "leucogaster", "leucogaster", "merriami", "merriami",
"spectabilis", "merriami", "eremicus", "merriami", "torridus",
"merriami", "torridus", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "leucogaster", "leucogaster", "merriami",
"merriami", "merriami", "leucogaster", "ordii", "merriami", "spectabilis",
"leucogaster", "spectabilis", "merriami", "merriami", "spectabilis",
"spectabilis", "ordii", "spectabilis", "merriami", "merriami",
"merriami", "spectabilis", "spectabilis", "merriami", "torridus",
"leucogaster", "spectabilis", "merriami", "spectabilis", "torridus",
"merriami", "spectabilis", "maniculatus", "merriami", "spectabilis",
"spectabilis", "maniculatus", "spectabilis", "spectabilis", "spectabilis",
"merriami", "leucogaster", "merriami", "leucogaster", "merriami",
"merriami", "merriami", "merriami", "leucogaster", "maniculatus",
"spectabilis", "merriami", "spectabilis", "merriami", "eremicus",
"merriami", "merriami", "spectabilis", "merriami", "spectabilis",
"spectabilis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"flavus", "ordii", "flavus", "spectabilis", "spectabilis", "merriami",
"merriami", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "merriami", "ordii", "merriami",
"merriami", "spectabilis", "spectabilis", "spectabilis", "ordii",
"ordii", "spectabilis", "merriami", "spectabilis", "merriami",
"merriami", "spectabilis", "spectabilis", "merriami", "merriami",
"spectabilis", "spectabilis", "spectabilis", "albigula", "merriami",
"albigula", "spectabilis", "spectabilis", "merriami", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "merriami", "spectabilis", "spectabilis",
"eremicus", "spectabilis", "spectabilis", "spectabilis", "ordii",
"torridus", "albigula", "penicillatus", "ordii", "spectabilis",
"eremicus", "spectabilis", "torridus", "albigula", "spectabilis",
"maniculatus", "spectabilis", "ordii", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"merriami", "albigula", "spectabilis", "albigula", "spectabilis",
"albigula", "merriami", "spectabilis", "spectabilis", "merriami",
"penicillatus", "merriami", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "flavus", "spectabilis", "albigula",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "merriami", "spectabilis", "albigula", "merriami",
"ordii", "spectabilis", "ordii", "spectabilis", "merriami", "spectabilis",
"merriami", "albigula", "torridus", "merriami", "spectabilis",
"torridus", "penicillatus", "spectabilis", "merriami", "ordii",
"spectabilis", "spectabilis", "spectabilis", "ordii", "merriami",
"spectabilis", "merriami", "merriami", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "merriami", "spectabilis", "spectabilis",
"penicillatus", "merriami", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "torridus", "torridus", "flavus",
"spectabilis", "merriami", "spectabilis", "flavus", "spectabilis",
"spectabilis", "albigula", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "merriami", "ordii", "spectabilis", "flavus",
"flavus", "eremicus", "merriami", "spectabilis", "merriami",
"merriami", "spectabilis", "leucogaster", "merriami", "albigula",
"spectabilis", "penicillatus", "merriami", "merriami", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "merriami", "penicillatus", "spectabilis", "spectabilis",
"penicillatus", "ordii", "spectabilis", "merriami", "merriami",
"eremicus", "torridus", "merriami", "flavus", "merriami", "spectabilis",
"spectabilis", "albigula", "spectabilis", "flavus", "flavus",
"spectabilis", "eremicus", "spectabilis", "flavus", "torridus",
"merriami", "merriami", "spectabilis", "albigula", "spectabilis",
"torridus", "merriami", "ordii", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "ordii", "spectabilis",
"penicillatus", "ordii", "leucogaster", "torridus", "spectabilis",
"penicillatus", "merriami", "penicillatus", "merriami", "leucogaster",
"merriami", "leucogaster", "penicillatus", "penicillatus", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "merriami", "torridus",
"leucogaster", "spectabilis", "torridus", "spectabilis", "albigula",
"spectabilis", "leucogaster", "leucogaster", "merriami", "merriami",
"spectabilis", "spectabilis", "spectabilis", "merriami", "spectabilis",
"spectabilis", "leucogaster", "torridus", "albigula", "merriami",
"spectabilis", "merriami", "torridus", "spectabilis", "penicillatus",
"ordii", "spectabilis", "merriami", "merriami", "albigula", "ordii",
"torridus", "torridus", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "torridus", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "spectabilis", "spectabilis", "torridus",
"torridus", "penicillatus", "merriami", "torridus", "leucogaster",
"merriami", "eremicus", "spectabilis", "spectabilis", "torridus",
"merriami", "spectabilis", "torridus", "albigula", "spectabilis",
"merriami", "torridus", "merriami", "merriami", "torridus", "spectabilis",
"spectabilis", "spectabilis", "merriami", "eremicus", "spilosoma",
"torridus", "penicillatus", "merriami", "leucogaster", "leucogaster",
"leucogaster", "merriami", "penicillatus", "torridus", "merriami",
"torridus", "flavus", "leucogaster", "merriami", "torridus",
"spectabilis", "spectabilis", "torridus", "torridus", "merriami",
"merriami", "flavus", "spectabilis", "merriami", "merriami",
"merriami", "torridus", "leucogaster", "spectabilis", "torridus",
"merriami", "penicillatus", "ordii", "ordii", "spectabilis",
"spilosoma", "albigula", "ordii", "spectabilis", "albigula",
"ordii", "merriami", "penicillatus", "merriami", "merriami",
"spectabilis", "merriami", "leucogaster", "merriami", "merriami",
"eremicus", "spectabilis", "spectabilis", "spectabilis", "torridus",
"spectabilis", "spectabilis", "eremicus", "torridus", "merriami",
"albigula", "leucogaster", "torridus", "ordii", "spectabilis",
"albigula", "torridus", "torridus", "leucogaster", "spectabilis",
"leucogaster", "spectabilis", "eremicus", "flavus", "spectabilis",
"torridus", "merriami", "torridus", "merriami", "merriami", "merriami",
"spectabilis", "spectabilis", "penicillatus", "merriami", "torridus",
"merriami", "merriami", "torridus", "albigula", "spectabilis",
"megalotis", "torridus", "merriami", "eremicus", "merriami",
"torridus", "merriami", "torridus", "merriami", "torridus", "flavus",
"eremicus", "merriami", "megalotis", "torridus", "merriami",
"torridus", "megalotis", "leucogaster", "torridus", "torridus",
"torridus", "spectabilis", "merriami", "spectabilis", "spectabilis",
"leucogaster", "flavus", "merriami", "torridus", "flavus", "spectabilis",
"leucogaster", "merriami", "maniculatus", "torridus", "leucogaster",
"albigula", "merriami", "merriami", "spectabilis", "leucogaster",
"flavus", "merriami", "merriami", "merriami", "leucogaster",
"albigula", "megalotis", "ordii", "leucogaster", "merriami",
"merriami", "eremicus", "albigula", "maniculatus", "merriami",
"merriami", "torridus", "merriami", "merriami", "merriami", "ordii",
"merriami", "spectabilis", "spectabilis", "merriami", "merriami",
"torridus", "merriami", "ordii", "leucogaster", "torridus", "albigula",
"leucogaster", "merriami", "merriami", "spectabilis", "albigula",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"torridus", "merriami", "merriami", "leucogaster", "spectabilis",
"leucogaster", "merriami", "merriami", "albigula", "merriami",
"merriami", "merriami", "torridus", "torridus", "merriami", "torridus",
"torridus", "torridus", "merriami", "merriami", "spectabilis",
"merriami", "leucogaster", "ordii", "albigula", "ordii", "flavus",
"spectabilis", "spectabilis", "merriami", "leucogaster", "spectabilis",
"megalotis", "merriami", "spectabilis", "megalotis", "merriami",
"penicillatus", "merriami", "merriami", "eremicus", "spectabilis",
"merriami", "merriami", "eremicus", "merriami", "ordii", "flavus",
"merriami", "merriami", "ordii", "spectabilis", "flavus", "torridus",
"merriami", "torridus", "leucogaster", "merriami", "leucogaster",
"leucogaster", "leucogaster", "merriami", "torridus", "megalotis",
"spectabilis", "merriami", "leucogaster", "merriami", "spectabilis",
"merriami", "leucogaster", "ordii", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "megalotis", "leucogaster",
"albigula", "torridus", "torridus", "merriami", "leucogaster",
"merriami", "albigula", "spectabilis", "flavus", "leucogaster",
"megalotis", "megalotis", "ordii", "eremicus", "merriami", "ordii",
"torridus", "spectabilis", "leucogaster", "merriami", "ordii",
"spectabilis", "megalotis", "flavus", "albigula", "ordii", "merriami",
"merriami", "merriami", "merriami", "torridus", "merriami", "merriami",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"torridus", "albigula", "merriami", "torridus", "merriami", "albigula",
"torridus", "merriami", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "albigula",
"ordii", "merriami", "ordii", "merriami", "merriami", "merriami",
"torridus", "ordii", "leucogaster", "merriami", "leucogaster",
"torridus", "leucogaster", "merriami", "merriami", "merriami",
"megalotis", "flavus", "spectabilis", "spectabilis", "leucogaster",
"ordii", "merriami", "spectabilis", "leucogaster", "merriami",
"merriami", "merriami", "leucogaster", "torridus", "flavus",
"merriami", "albigula", "spectabilis", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "flavus",
"flavus", "albigula", "torridus", "merriami", "merriami", "ordii",
"merriami", "torridus", "torridus", "flavus", "merriami", "spectabilis",
"merriami", "leucogaster", "megalotis", "megalotis", "leucogaster",
"ordii", "spectabilis", "spectabilis", "megalotis", "torridus",
"leucogaster", "ordii", "merriami", "ordii", "spectabilis", "megalotis",
"merriami", "merriami", "eremicus", "merriami", "ordii", "flavus",
"eremicus", "spectabilis", "leucogaster", "megalotis", "leucogaster",
"merriami", "merriami", "ordii", "ordii", "leucogaster", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "eremicus", "ordii", "ordii", "merriami", "spectabilis",
"merriami", "spectabilis", "spectabilis", "merriami", "merriami",
"merriami", "torridus", "spectabilis", "merriami", "ordii", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "albigula", "spectabilis",
"spectabilis", "spectabilis", "merriami", "flavus", "leucogaster",
"merriami", "flavus", "torridus", "torridus", "megalotis", "merriami",
"merriami", "megalotis", "megalotis", "flavus", "spectabilis",
"flavus", "merriami", "megalotis", "spectabilis", "spectabilis",
"merriami", "albigula", "megalotis", "spectabilis", "merriami",
"leucogaster", "merriami", "torridus", "megalotis", "eremicus",
"leucogaster", "leucogaster", "flavus", "merriami", "flavus",
"megalotis", "ordii", "ordii", "flavus", "torridus", "torridus",
"merriami", "merriami", "spectabilis", "spectabilis", "merriami",
"flavus", "merriami", "merriami", "merriami", "merriami", "leucogaster",
"spectabilis", "merriami", "merriami", "merriami", "albigula",
"merriami", "merriami", "spectabilis", "ordii", "ordii", "penicillatus",
"leucogaster", "spectabilis", "merriami", "leucogaster", "merriami",
"merriami", "merriami", "eremicus", "megalotis", "ordii", "merriami",
"flavus", "spectabilis", "merriami", "merriami", "torridus",
"megalotis", "merriami", "flavus", "merriami", "ordii", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "flavus",
"merriami", "torridus", "ordii", "flavus", "merriami", "merriami",
"torridus", "merriami", "merriami", "spectabilis", "torridus",
"ordii", "merriami", "merriami", "ordii", "spectabilis", "merriami",
"merriami", "leucogaster", "spectabilis", "ordii", "merriami",
"spectabilis", "ordii", "merriami", "flavus", "torridus", "merriami",
"spectabilis", "ordii", "merriami", "megalotis", "spectabilis",
"megalotis", "merriami", "leucogaster", "spectabilis", "merriami",
"ordii", "merriami", "ordii", "merriami", "merriami", "merriami",
"flavus", "leucogaster", "merriami", "megalotis", "ordii", "spectabilis",
"merriami", "merriami", "spectabilis", "megalotis", "megalotis",
"merriami", "merriami", "leucogaster", "leucogaster", "merriami",
"megalotis", "merriami", "spectabilis", "merriami", "spectabilis",
"spectabilis", "merriami", "flavus", "spectabilis", "merriami",
"merriami", "spectabilis", "leucogaster", "merriami", "merriami",
"merriami", "merriami", "merriami", "torridus", "merriami", "merriami",
"megalotis", "ordii", "torridus", "merriami", "merriami", "merriami",
"merriami", "torridus", "merriami", "spectabilis", "ordii", "spectabilis",
"megalotis", "merriami", "spectabilis", "leucogaster", "spectabilis",
"spectabilis", "spectabilis", "merriami", "merriami", "albigula",
"merriami", "ordii", "megalotis", "spectabilis", "torridus",
"spectabilis", "merriami", "merriami", "merriami", "merriami",
"merriami", "sp.", "merriami", "merriami", "ordii", "torridus",
"eremicus", "spectabilis", "merriami", "spectabilis", "merriami",
"torridus", "leucogaster", "merriami", "merriami", "flavus",
"ordii", "leucogaster", "merriami", "ordii", "merriami", "spectabilis",
"merriami", "albigula", "flavus", "flavus", "merriami", "albigula",
"merriami", "eremicus", "spectabilis", "merriami", "merriami",
"torridus", "merriami", "merriami", "merriami", "albigula", "merriami",
"ordii", "merriami", "spectabilis", "leucogaster", "leucogaster",
"merriami", "merriami", "albigula", "leucogaster", "flavus",
"megalotis", "megalotis", "merriami", "merriami", "megalotis",
"megalotis", "flavus", "merriami", "spectabilis", "spectabilis",
"megalotis", "spectabilis", "spectabilis", "megalotis", "spectabilis",
"spectabilis", "merriami", "ordii", "eremicus", "spectabilis",
"megalotis", "spectabilis", "eremicus", "flavus", "merriami",
"leucogaster", "spectabilis", "spectabilis", "spectabilis", "merriami",
"merriami", "merriami", "torridus", "merriami", "flavus", "merriami",
"merriami", "merriami", "megalotis", "torridus", "spectabilis",
"spectabilis", "megalotis", "merriami", "spectabilis", "flavus",
"spectabilis", "merriami", "flavus", "spectabilis", "spectabilis",
"spectabilis", "flavus", "merriami", "torridus", "flavus", "spectabilis",
"spectabilis", "merriami", "merriami", "spectabilis", "spectabilis",
"torridus", "leucogaster", "merriami", "leucogaster", "flavus",
"merriami", "torridus", "flavus", "megalotis", "merriami", "merriami",
"merriami", "spectabilis", "leucogaster", "torridus", "spectabilis",
"merriami", "megalotis", "flavus", "torridus", "spectabilis",
"spectabilis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"merriami", "megalotis", "ordii", "spectabilis", "merriami",
"megalotis", "merriami", "spectabilis", "ordii", "leucogaster",
"penicillatus", "spectabilis", "torridus", "spectabilis", "spectabilis",
"flavus", "merriami", "spectabilis", "leucogaster", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "flavus",
"flavus", "megalotis", "merriami", "spectabilis", "flavus", "spectabilis",
"spilosoma", "eremicus", "leucogaster", "flavus", "flavus", "merriami",
"flavus", "torridus", "merriami", "merriami", "torridus", "spectabilis",
"merriami", "megalotis", "spectabilis", "leucogaster", "spectabilis",
"megalotis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"flavus", "flavus", "merriami", "merriami", "leucogaster", "albigula",
"flavus", "merriami", "merriami", "spectabilis", "spectabilis",
"spectabilis", "merriami", "merriami", "merriami", "leucogaster",
"merriami", "spilosoma", "spectabilis", "merriami", "spectabilis",
"leucogaster", "eremicus", "merriami", "ordii", "spectabilis",
"spectabilis", "spectabilis", "albigula", "flavus", "spectabilis",
"merriami", "spectabilis", "albigula", "spectabilis", "spectabilis",
"spectabilis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "merriami", "penicillatus", "spectabilis", "spectabilis",
"torridus", "spectabilis", "spectabilis", "merriami", "spectabilis",
"ordii", "merriami", "albigula", "penicillatus", "spectabilis",
"merriami", "merriami", "spectabilis", "spectabilis", "merriami",
"spectabilis", "merriami", "flavus", "flavus", "leucogaster",
"spectabilis", "merriami", "spectabilis", "merriami", "leucogaster",
"flavus", "merriami", "spectabilis", "merriami", "leucogaster",
"spectabilis", "spectabilis", "merriami", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "merriami", "merriami",
"flavus", "flavus", "merriami", "albigula", "ordii", "albigula",
"spectabilis", "spectabilis", "merriami", "spectabilis", "albigula",
"albigula", "albigula", "albigula", "merriami", "spectabilis",
"spectabilis", "merriami", "ordii", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "merriami", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "torridus", "spectabilis",
"spectabilis", "merriami", "albigula", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "spectabilis",
"leucogaster", "merriami", "spectabilis", "leucogaster", "merriami",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "eremicus",
"ordii", "merriami", "merriami", "ordii", "merriami", "spectabilis",
"spectabilis", "spectabilis", "albigula", "flavus", "ordii",
"spilosoma", "penicillatus", "spectabilis", "spectabilis", "spectabilis",
"ordii", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"eremicus", "spectabilis", "ordii", "albigula", "merriami", "spectabilis",
"spectabilis", "spectabilis", "ordii", "spectabilis", "merriami",
"spectabilis", "merriami", "leucogaster", "merriami", "albigula",
"spectabilis", "albigula", "merriami", "spectabilis", "penicillatus",
"merriami", "spectabilis", "torridus", "spectabilis", "penicillatus",
"merriami", "merriami", "flavus", "spectabilis", "merriami",
"spectabilis", "spectabilis", "merriami", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "spectabilis",
"torridus", "merriami", "flavus", "torridus", "merriami", "spectabilis",
"merriami", "torridus", "spectabilis", "albigula", "merriami",
"spectabilis", "eremicus", "eremicus", "flavus", "spectabilis",
"ordii", "torridus", "albigula", "spectabilis", "merriami", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "merriami",
"ordii", "ordii", "spilosoma", "albigula", "ordii", "spectabilis",
"ordii", "spectabilis", "ordii", "merriami", "merriami", "spilosoma",
"merriami", "albigula", "flavus", "merriami", "spectabilis",
"spectabilis", "merriami", "merriami", "merriami", "penicillatus",
"spectabilis", "flavus", "merriami", "spectabilis", "flavus",
"torridus", "spectabilis", "spectabilis", "merriami", "merriami",
"leucogaster", "merriami", "merriami", "ordii", "merriami", "spectabilis",
"flavus", "ordii", "spectabilis", "albigula", "spectabilis",
"spectabilis", "spectabilis", "leucogaster", "spectabilis", "ordii",
"spectabilis", "spectabilis", "ordii", "merriami", "spectabilis",
"spectabilis", "leucogaster", "merriami", "albigula", "spilosoma",
"albigula", "albigula", "penicillatus", "merriami", "merriami",
"flavus", "flavus", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "flavus", "merriami", "flavus", "merriami",
"torridus", "penicillatus", "merriami", "torridus", "merriami",
"spectabilis", "merriami", "flavus", "spectabilis", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"albigula", "merriami", "spectabilis", "merriami", "merriami",
"penicillatus", "torridus", "merriami", "spectabilis", "spectabilis",
"penicillatus", "spilosoma", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "leucogaster", "spectabilis", "spectabilis", "spectabilis",
"albigula", "flavus", "spectabilis", "flavus", "merriami", "spectabilis",
"merriami", "ordii", "torridus", "spilosoma", "spilosoma", "spectabilis",
"eremicus", "flavus", "spectabilis", "flavus", "albigula", "torridus",
"merriami", "flavus", "penicillatus", "torridus", "spectabilis",
"flavus", "merriami", "albigula", "penicillatus", "merriami",
"spectabilis", "merriami", "merriami", "merriami", "flavus",
"spectabilis", "spectabilis", "torridus", "merriami", "flavus",
"merriami", "merriami", "penicillatus", "spectabilis", "spectabilis",
"merriami", "flavus", "torridus", "spectabilis", "leucogaster",
"penicillatus", "spectabilis", "leucogaster", "megalotis", "torridus",
"spectabilis", "torridus", "spectabilis", "merriami", "torridus",
"spectabilis", "merriami", "torridus", "albigula", "torridus",
"merriami", "spectabilis", "merriami", "spectabilis", "merriami",
"merriami", "albigula", "flavus", "leucogaster", "flavus", "leucogaster",
"spectabilis", "spectabilis", "spectabilis", "torridus", "ordii",
"flavus", "eremicus", "merriami", "merriami", "spectabilis",
"torridus", "leucogaster", "torridus", "merriami", "albigula",
"merriami", "torridus", "torridus", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "flavus", "spectabilis", "merriami",
"spectabilis", "flavus", "spectabilis", "merriami", "merriami",
"spectabilis", "merriami", "merriami", "leucogaster", "torridus",
"merriami", "torridus", "leucogaster", "torridus", "merriami",
"torridus", "merriami", "penicillatus", "merriami", "torridus",
"merriami", "merriami", "spectabilis", "eremicus", "spectabilis",
"torridus", "albigula", "spectabilis", "torridus", "torridus",
"flavus", "ordii", "spectabilis", "merriami", "torridus", "spectabilis",
"merriami", "spectabilis", "spectabilis", "merriami", "albigula",
"ordii", "merriami", "albigula", "leucogaster", "merriami", "spectabilis",
"spectabilis", "spectabilis", "flavus", "flavus", "ordii", "ordii",
"leucogaster", "albigula", "merriami", "merriami", "spectabilis",
"leucogaster", "spectabilis", "merriami", "merriami", "spectabilis",
"ordii", "merriami", "ordii", "merriami", "spectabilis", "merriami",
"torridus", "merriami", "torridus", "spectabilis", "merriami",
"merriami", "merriami", "spectabilis", "spectabilis", "merriami",
"spectabilis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"ordii", "merriami", "merriami", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "torridus", "merriami", "merriami", "merriami",
"merriami", "torridus", "spectabilis", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "merriami", "merriami",
"ordii", "merriami", "merriami", "merriami", "ordii", "merriami",
"merriami", "torridus", "merriami", "spectabilis", "flavus",
"leucogaster", "merriami", "spectabilis", "leucogaster", "albigula",
"spectabilis", "spectabilis", "merriami", "merriami", "torridus",
"leucogaster", "merriami", "spectabilis", "spectabilis", "merriami",
"spectabilis", "merriami", "flavus", "merriami", "spectabilis",
"spectabilis", "torridus", "leucogaster", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "leucogaster", "merriami",
"merriami", "flavus", "leucogaster", "flavus", "merriami", "merriami",
"torridus", "ordii", "ordii", "spectabilis", "merriami", "merriami",
"merriami", "merriami", "merriami", "albigula", "torridus", "leucogaster",
"spectabilis", "leucogaster", "albigula", "flavus", "ordii",
"leucogaster", "torridus", "leucogaster", "spectabilis", "merriami",
"spectabilis", "merriami", "merriami", "torridus", "merriami",
"spectabilis", "leucogaster", "merriami", "spectabilis", "torridus",
"spectabilis", "merriami", "spectabilis", "flavus", "spectabilis",
"merriami", "merriami", "ordii", "merriami", "ordii", "merriami",
"torridus", "merriami", "flavus", "spectabilis", "merriami",
"spectabilis", "merriami", "ordii", "ordii", "merriami", "merriami",
"spectabilis", "merriami", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "spectabilis",
"merriami", "ordii", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "spectabilis", "spectabilis", "ordii",
"spectabilis", "spectabilis", "merriami", "merriami", "ordii",
"merriami", "merriami", "merriami", "merriami", "merriami", "spectabilis",
"spectabilis", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "merriami", "maniculatus", "merriami", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "torridus",
"flavus", "albigula", "albigula", "merriami", "ordii", "spectabilis",
"leucogaster", "merriami", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "flavus", "spectabilis", "spectabilis",
"merriami", "spectabilis", "spectabilis", "torridus", "spectabilis",
"albigula", "spectabilis", "spectabilis", "spectabilis", "ordii",
"torridus", "merriami", "flavus", "merriami", "leucogaster",
"albigula", "merriami", "merriami", "eremicus", "merriami", "merriami",
"merriami", "eremicus", "merriami", "spectabilis", "merriami",
"albigula", "merriami", "albigula", "ordii", "spectabilis", "ordii",
"merriami", "megalotis", "leucogaster", "torridus", "flavus",
"leucogaster", "penicillatus", "spectabilis", "megalotis", "spectabilis",
"ordii", "spectabilis", "merriami", "torridus", "spectabilis",
"spectabilis", "leucogaster", "torridus", "spectabilis", "merriami",
"ordii", "torridus", "merriami", "leucogaster", "spectabilis",
"spectabilis", "torridus", "merriami", "leucogaster", "ordii",
"merriami", "merriami", "merriami", "ordii", "torridus", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"albigula", "merriami", "merriami", "merriami", "merriami", "spectabilis",
"torridus", "spectabilis", "spectabilis", "merriami", "spectabilis",
"ordii", "spectabilis", "ordii", "merriami", "merriami", "merriami",
"eremicus", "maniculatus", "spectabilis", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "ordii", "albigula", "spectabilis", "leucogaster",
"megalotis", "merriami", "merriami", "flavus", "spectabilis",
"albigula", "merriami", "leucogaster", "spectabilis", "ordii",
"merriami", "flavus", "merriami", "spectabilis", "ordii", "merriami",
"merriami", "ordii", "merriami", "leucogaster", "merriami", "spectabilis",
"spectabilis", "merriami", "leucogaster", "merriami", "merriami",
"merriami", "merriami", "merriami", "leucogaster", "ordii", "merriami",
"eremicus", "albigula", "leucogaster", "albigula", "eremicus",
"spectabilis", "eremicus", "spectabilis", "spectabilis", "leucogaster",
"spectabilis", "merriami", "spectabilis", "spectabilis", "flavus",
"leucogaster", "merriami", "flavus", "megalotis", "penicillatus",
"ordii", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"megalotis", "albigula", "merriami", "megalotis", "merriami",
"spectabilis", "merriami", "merriami", "leucogaster", "torridus",
"leucogaster", "merriami", "spectabilis", "merriami", "ordii",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"flavus", "merriami", "spectabilis", "spectabilis", "flavus",
"merriami", "ordii", "spectabilis", "merriami", "merriami", "spectabilis",
"ordii", "ordii", "spectabilis", "ordii", "merriami", "merriami",
"ordii", "merriami", "ordii", "spectabilis", "merriami", "spectabilis",
"ordii", "merriami", "albigula", "ordii", "merriami", "ordii",
"spectabilis", "spectabilis", "leucogaster", "merriami", "ordii",
"spectabilis", "merriami", "merriami", "merriami", "merriami",
"merriami", "ordii", "flavus", "spectabilis", "merriami", "torridus",
"megalotis", "leucogaster", "merriami", "spectabilis", "megalotis",
"torridus", "spectabilis", "merriami", "torridus", "spectabilis",
"merriami", "ordii", "merriami", "flavus", "merriami", "ordii",
"spectabilis", "flavus", "torridus", "spectabilis", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "spectabilis",
"spectabilis", "albigula", "ordii", "merriami", "torridus", "spectabilis",
"spectabilis", "torridus", "merriami", "torridus", "maniculatus",
"merriami", "leucogaster", "merriami", "merriami", "ordii", "spectabilis",
"spectabilis", "merriami", "merriami", "torridus", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"ordii", "spectabilis", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "spectabilis",
"torridus", "torridus", "spectabilis", "spectabilis", "merriami",
"merriami", "spectabilis", "spectabilis", "flavus", "merriami",
"spectabilis", "merriami", "eremicus", "flavus", "leucogaster",
"merriami", "merriami", "spectabilis", "leucogaster", "spectabilis",
"spectabilis", "torridus", "spectabilis", "albigula", "merriami",
"spectabilis", "flavus", "spectabilis", "flavus", "spectabilis",
"merriami", "merriami", "merriami", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"spectabilis", "flavus", "merriami", "merriami", "merriami",
"ordii", "leucogaster", "merriami", "ordii", "flavus", "spectabilis",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"merriami", "ordii", "leucogaster", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "torridus",
"eremicus", "merriami", "ordii", "merriami", "ordii", "merriami",
"merriami", "merriami", "merriami", "leucogaster", "flavus",
"spilosoma", "albigula", "merriami", "merriami", "penicillatus",
"spilosoma", "torridus", "eremicus", "merriami", "merriami",
"ordii", "spectabilis", "spectabilis", "ordii", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "spectabilis",
"spectabilis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "torridus", "merriami", "ordii", "spectabilis",
"spectabilis", "merriami", "spectabilis", "ordii", "spectabilis",
"leucogaster", "spectabilis", "merriami", "leucogaster", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"maniculatus", "merriami", "ordii", "merriami", "maniculatus",
"ordii", "merriami", "merriami", "spectabilis", "leucogaster",
"ordii", "spectabilis", "spectabilis", "spectabilis", "flavus",
"spectabilis", "ordii", "merriami", "spectabilis", "megalotis",
"spectabilis", "merriami", "merriami", "leucogaster", "spectabilis",
"merriami", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"albigula", "merriami", "spectabilis", "eremicus", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"spilosoma", "merriami", "spectabilis", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "merriami", "merriami",
"spectabilis", "albigula", "merriami", "spilosoma", "spectabilis",
"merriami", "merriami", "spectabilis", "ordii", "spectabilis",
"spectabilis", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "flavus",
"merriami", "merriami", "merriami", "merriami", "torridus", "flavus",
"merriami", "torridus", "spectabilis", "spectabilis", "ordii",
"spectabilis", "merriami", "merriami", "spectabilis", "spectabilis",
"ordii", "ordii", "merriami", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "spectabilis", "spectabilis", "flavus",
"spectabilis", "spectabilis", "spectabilis", "merriami", "spectabilis",
"merriami", "merriami", "ordii", "spectabilis", "merriami", "ordii",
"merriami", "ordii", "spectabilis", "merriami", "spectabilis",
"leucogaster", "ordii", "spectabilis", "spectabilis", "merriami",
"ordii", "spectabilis", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "torridus", "ordii", "spectabilis", "merriami",
"spilosoma", "merriami", "merriami", "merriami", "ordii", "leucogaster",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"torridus", "merriami", "spectabilis", "spectabilis", "ordii",
"merriami", "merriami", "merriami", "maniculatus", "merriami",
"merriami", "ordii", "spectabilis", "merriami", "spectabilis",
"ordii", "spectabilis", "spectabilis", "ordii", "leucogaster",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"ordii", "spectabilis", "ordii", "spectabilis", "spectabilis",
"merriami", "flavus", "merriami", "eremicus", "merriami", "ordii",
"ordii", "ordii", "flavus", "merriami", "spectabilis", "merriami",
"penicillatus", "spectabilis", "merriami", "ordii", "merriami",
"spectabilis", "merriami", "spectabilis", "albigula", "maniculatus",
"merriami", "spectabilis", "merriami", "spectabilis", "spectabilis",
"merriami", "merriami", "leucogaster", "merriami", "penicillatus",
"merriami", "torridus", "merriami", "merriami", "ordii", "ordii",
"merriami", "torridus", "ordii", "spectabilis", "eremicus", "merriami",
"merriami", "merriami", "merriami", "merriami", "ordii", "spectabilis",
"merriami", "merriami", "spectabilis", "merriami", "spectabilis",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"spectabilis", "ordii", "merriami", "spectabilis", "merriami",
"merriami", "spectabilis", "merriami", "spectabilis", "merriami",
"spectabilis", "ordii", "flavus", "leucogaster", "merriami",
"eremicus", "merriami", "eremicus", "spectabilis", "merriami",
"eremicus", "penicillatus", "spectabilis", "merriami", "albigula",
"spectabilis", "maniculatus", "merriami", "spectabilis", "spectabilis",
"megalotis", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "spectabilis", "spectabilis", "merriami", "merriami",
"merriami", "spectabilis", "spectabilis", "spectabilis", "merriami",
"albigula", "merriami", "spectabilis", "merriami", "spectabilis",
"spilosoma", "merriami", "ordii", "flavus", "merriami", "spectabilis",
"torridus", "merriami", "torridus", "merriami", "albigula", "merriami",
"spectabilis", "ordii", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "torridus", "ordii", "merriami", "merriami",
"merriami", "ordii", "spectabilis", "merriami", "ordii", "spectabilis",
"spectabilis", "merriami", "merriami", "merriami", "spectabilis",
"merriami", "spectabilis", "leucogaster", "merriami", "spectabilis",
"merriami", "spectabilis", "merriami", "spectabilis", "spectabilis",
"flavus", "spectabilis", "merriami", "merriami", "merriami",
"merriami", "ordii", "flavus", "merriami", "ordii", "spectabilis",
"spectabilis", "flavus", "ordii", "spectabilis", "spectabilis",
"ordii", "spectabilis", "flavus", "spectabilis", "merriami",
"ordii", "ordii", "spectabilis", "spectabilis", "merriami", "flavus",
"spectabilis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "merriami", "merriami", "flavus", "merriami",
"merriami", "merriami", "spectabilis", "maniculatus", "merriami",
"merriami", "merriami", "flavus", "merriami", "spectabilis",
"merriami", "merriami", "ordii", "albigula", "ordii", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "ordii",
"merriami", "albigula", "spectabilis", "leucogaster", "penicillatus",
"spectabilis", "ordii", "spectabilis", "spectabilis", "merriami",
"ordii", "merriami", "ordii", "spectabilis", "spectabilis", "spectabilis",
"penicillatus", "flavus", "flavus", "penicillatus", "spectabilis",
"spectabilis", "megalotis", "torridus", "leucogaster", "spectabilis",
"spectabilis", "albigula", "merriami", "spectabilis", "merriami",
"maniculatus", "spectabilis", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "merriami", "ordii", "merriami",
"eremicus", "spectabilis", "merriami", "merriami", "albigula",
"merriami", "merriami", "merriami", "spectabilis", "penicillatus",
"eremicus", "albigula", "flavus", "merriami", "merriami", "merriami",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "torridus",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "merriami",
"torridus", "albigula", "megalotis", "spectabilis", "spectabilis",
"spectabilis", "ordii", "spectabilis", "merriami", "merriami",
"merriami", "merriami", "merriami", "ordii", "merriami", "spectabilis",
"spectabilis", "merriami", "penicillatus", "merriami", "albigula",
"merriami", "merriami", "merriami", "merriami", "ordii", "merriami",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"merriami", "albigula", "spectabilis", "merriami", "penicillatus",
"spectabilis", "spectabilis", "albigula", "torridus", "spectabilis",
"spectabilis", "spectabilis", "ordii", "merriami", "merriami",
"ordii", "flavus", "merriami", "spectabilis", "merriami", "ordii",
"merriami", "merriami", "ordii", "maniculatus", "merriami", "spectabilis",
"merriami", "spectabilis", "albigula", "ordii", "spilosoma",
"merriami", "merriami", "merriami", "spectabilis", "spectabilis",
"flavus", "flavus", "spectabilis", "flavus", "flavus", "flavus",
"merriami", "spectabilis", "spectabilis", "ordii", "albigula",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "merriami",
"spectabilis", "merriami", "spectabilis", "albigula", "merriami",
"ordii", "merriami", "spectabilis", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "flavus", "merriami", "spectabilis",
"merriami", "albigula", "merriami", "spectabilis", "torridus",
"flavus", "leucogaster", "spectabilis", "spectabilis", "spectabilis",
"merriami", "spectabilis", "spectabilis", "merriami", "merriami",
"spectabilis", "spectabilis", "leucogaster", "ordii", "spectabilis",
"merriami", "albigula", "merriami", "penicillatus", "penicillatus",
"torridus", "merriami", "merriami", "merriami", "torridus", "merriami",
"merriami", "spectabilis", "spectabilis", "torridus", "ordii",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "penicillatus", "penicillatus", "merriami", "merriami",
"spectabilis", "penicillatus", "merriami", "merriami", "ordii",
"leucogaster", "flavus", "ordii", "merriami", "albigula", "merriami",
"merriami", "albigula", "merriami", "merriami", "spectabilis",
"ordii", "spectabilis", "merriami", "merriami", "spectabilis",
"spectabilis", "merriami", "spectabilis", "merriami", "merriami",
"spectabilis", "ordii", "spectabilis", "merriami", "merriami",
"ordii", "merriami", "penicillatus", "spectabilis", "albigula",
"ordii", "merriami", "merriami", "merriami", "ordii", "merriami",
"merriami", "spectabilis", "merriami", "spectabilis", "merriami",
"albigula", "flavus", "merriami", "merriami", "spectabilis",
"albigula", "torridus", "ordii", "merriami", "merriami", "spectabilis",
"merriami", "ordii", "eremicus", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "torridus", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "leucogaster", "torridus",
"albigula", "leucogaster", "merriami", "merriami", "torridus",
"albigula", "albigula", "spectabilis", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "merriami", "albigula",
"eremicus", "eremicus", "torridus", "merriami", "spectabilis",
"merriami", "merriami", "torridus", "eremicus", "spectabilis",
"spectabilis", "albigula", "megalotis", "spectabilis", "ordii",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "leucogaster",
"merriami", "eremicus", "merriami", "leucogaster", "spilosoma",
"albigula", "merriami", "eremicus", "merriami", "merriami", "leucogaster",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "leucogaster", "merriami", "torridus", "merriami",
"maniculatus", "eremicus", "merriami", "torridus", "eremicus",
"leucogaster", "torridus", "leucogaster", "merriami", "albigula",
"torridus", "merriami", "torridus", "merriami", "spectabilis",
"merriami", "leucogaster", "albigula", "torridus", "torridus",
"eremicus", "merriami", "merriami", "eremicus", "spectabilis",
"merriami", "albigula", "flavus", "flavus", "merriami", "merriami",
"spectabilis", "leucogaster", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "albigula", "merriami", "penicillatus",
"ordii", "torridus", "albigula", "merriami", "flavus", "ordii",
"spectabilis", "penicillatus", "spectabilis", "ordii", "spectabilis",
"albigula", "spectabilis", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "torridus", "spectabilis", "torridus",
"eremicus", "torridus", "merriami", "albigula", "merriami", "merriami",
"spectabilis", "megalotis", "eremicus", "flavus", "merriami",
"merriami", "eremicus", "torridus", "merriami", "albigula", "spectabilis",
"merriami", "merriami", "merriami", "torridus", "spectabilis",
"merriami", "spectabilis", "ordii", "torridus", "eremicus", "albigula",
"leucogaster", "merriami", "merriami", "albigula", "merriami",
"maniculatus", "leucogaster", "merriami", "leucogaster", "spectabilis",
"merriami", "spectabilis", "torridus", "merriami", "spectabilis",
"torridus", "merriami", "merriami", "maniculatus", "megalotis",
"merriami", "megalotis", "spectabilis", "merriami", "leucogaster",
"merriami", "merriami", "torridus", "merriami", "torridus", "flavus",
"merriami", "merriami", "albigula", "merriami", "merriami", "spectabilis",
"spectabilis", "spectabilis", "merriami", "megalotis", "merriami",
"ordii", "ordii", "merriami", "albigula", "merriami", "merriami",
"merriami", "ordii", "albigula", "spectabilis", "ordii", "merriami",
"merriami", "spectabilis", "merriami", "albigula", "leucogaster",
"merriami", "merriami", "spectabilis", "flavus", "merriami",
"merriami", "spectabilis", "merriami", "flavus", "leucogaster",
"ordii", "megalotis", "spectabilis", "merriami", "spectabilis",
"merriami", "flavus", "merriami", "merriami", "albigula", "merriami",
"eremicus", "merriami", "merriami", "eremicus", "spectabilis",
"eremicus", "merriami", "spectabilis", "spectabilis", "eremicus",
"flavus", "megalotis", "maniculatus", "spectabilis", "eremicus",
"merriami", "flavus", "megalotis", "megalotis", "eremicus", "merriami",
"megalotis", "spectabilis", "megalotis", "megalotis", "eremicus",
"spectabilis", "merriami", "flavus", "spectabilis", "megalotis",
"merriami", "megalotis", "albigula", "eremicus", "maniculatus",
"merriami", "spectabilis", "merriami", "flavus", "maniculatus",
"megalotis", "eremicus", "albigula", "albigula", "merriami",
"merriami", "spectabilis", "spectabilis", "merriami", "megalotis",
"merriami", "merriami", "spectabilis", "albigula", "merriami",
"ordii", "eremicus", "merriami", "flavus", "eremicus", "albigula",
"merriami", "flavus", "leucogaster", "merriami", "eremicus",
"spectabilis", "merriami", "megalotis", "spectabilis", "spectabilis",
"merriami", "merriami", "torridus", "eremicus", "merriami", "merriami",
"ordii", "torridus", "ordii", "spectabilis", "merriami", "merriami",
"merriami", "ordii", "merriami", "megalotis", "albigula", "megalotis",
"albigula", "spectabilis", "flavus", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "spectabilis", "spectabilis",
"spectabilis", "maniculatus", "merriami", "megalotis", "ordii",
"eremicus", "ordii", "albigula", "merriami", "megalotis", "merriami",
"eremicus", "merriami", "merriami", "leucogaster", "megalotis",
"ordii", "megalotis", "merriami", "eremicus", "merriami", "merriami",
"albigula", "eremicus", "spectabilis", "merriami", "merriami",
"eremicus", "albigula", "flavus", "merriami", "ordii", "ordii",
"ordii", "merriami", "merriami", "megalotis", "megalotis", "eremicus",
"spectabilis", "maniculatus", "spectabilis", "megalotis", "albigula",
"merriami", "merriami", "merriami", "megalotis", "eremicus",
"merriami", "merriami", "megalotis", "megalotis", "spectabilis",
"ordii", "spectabilis", "maniculatus", "merriami", "maniculatus",
"merriami", "merriami", "ordii", "megalotis", "albigula", "megalotis",
"spectabilis", "megalotis", "megalotis", "merriami", "flavus",
"merriami", "merriami", "flavus", "merriami", "ordii", "torridus",
"merriami", "eremicus", "ordii", "merriami", "merriami", "torridus",
"torridus", "merriami", "megalotis", "merriami", "albigula",
"merriami", "eremicus", "spectabilis", "torridus", "merriami",
"eremicus", "merriami", "leucogaster", "albigula", "merriami",
"merriami", "eremicus", "flavus", "eremicus", "spectabilis",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"merriami", "flavus", "flavus", "leucogaster", "merriami", "eremicus",
"megalotis", "spectabilis", "leucogaster", "flavus", "albigula",
"flavus", "eremicus", "merriami", "spectabilis", "torridus",
"leucogaster", "megalotis", "merriami", "leucogaster", "merriami",
"leucogaster", "megalotis", "megalotis", "merriami", "merriami",
"merriami", "merriami", "merriami", "eremicus", "eremicus", "eremicus",
"merriami", "eremicus", "spectabilis", "megalotis", "megalotis",
"maniculatus", "flavus", "merriami", "merriami", "merriami",
"ordii", "merriami", "spectabilis", "albigula", "eremicus", "merriami",
"spectabilis", "megalotis", "eremicus", "albigula", "eremicus",
"flavus", "spectabilis", "merriami", "albigula", "maniculatus",
"eremicus", "maniculatus", "megalotis", "spectabilis", "merriami",
"megalotis", "megalotis", "merriami", "megalotis", "flavus",
"merriami", "flavus", "merriami", "ordii", "spectabilis", "ordii",
"merriami", "merriami", "spectabilis", "merriami", "eremicus",
"merriami", "albigula", "megalotis", "flavus", "megalotis", "megalotis",
"megalotis", "megalotis", "megalotis", "merriami", "megalotis",
"merriami", "megalotis", "merriami", "eremicus", "merriami",
"albigula", "flavus", "merriami", "merriami", "merriami", "spectabilis",
"megalotis", "merriami", "flavus", "flavus", "leucogaster", "albigula",
"albigula", "megalotis", "albigula", "eremicus", "merriami",
"eremicus", "merriami", "leucogaster", "megalotis", "megalotis",
"ordii", "merriami", "spectabilis", "merriami", "ordii", "merriami",
"megalotis", "merriami", "merriami", "merriami", "merriami",
"merriami", "megalotis", "megalotis", "merriami", "spectabilis",
"merriami", "spectabilis", "eremicus", "flavus", "megalotis",
"spectabilis", "megalotis", "leucogaster", "flavus", "leucogaster",
"megalotis", "merriami", "megalotis", "megalotis", "merriami",
"spectabilis", "merriami", "merriami", "merriami", "merriami",
"megalotis", "megalotis", "merriami", "merriami", "merriami",
"spectabilis", "merriami", "megalotis", "torridus", "leucogaster",
"merriami", "albigula", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "torridus", "eremicus", "megalotis", "spectabilis",
"eremicus", "megalotis", "spectabilis", "spectabilis", "spectabilis",
"eremicus", "spectabilis", "ordii", "spectabilis", "megalotis",
"ordii", "spectabilis", "eremicus", "merriami", "ordii", "merriami",
"eremicus", "albigula", "spectabilis", "eremicus", "megalotis",
"eremicus", "spectabilis", "ordii", "eremicus", "spectabilis",
"leucogaster", "merriami", "megalotis", "merriami", "spectabilis",
"torridus", "megalotis", "leucogaster", "merriami", "leucogaster",
"eremicus", "megalotis", "leucogaster", "ordii", "spectabilis",
"flavus", "spectabilis", "merriami", "merriami", "albigula",
"spectabilis", "torridus", "megalotis", "merriami", "megalotis",
"spectabilis", "megalotis", "megalotis", "megalotis", "megalotis",
"maniculatus", "megalotis", "merriami", "spectabilis", "merriami",
"eremicus", "megalotis", "eremicus", "maniculatus", "spectabilis",
"flavus", "spilosoma", "megalotis", "megalotis", "eremicus",
"megalotis", "flavus", "eremicus", "ordii", "merriami", "megalotis",
"albigula", "leucogaster", "merriami", "merriami", "flavus",
"merriami", "albigula", "spectabilis", "eremicus", "megalotis",
"eremicus", "merriami", "megalotis", "megalotis", "megalotis",
"maniculatus", "flavus", "merriami", "ordii", "merriami", "maniculatus",
"ordii", "merriami", "maniculatus", "maniculatus", "megalotis",
"maniculatus", "megalotis", "maniculatus", "megalotis", "albigula",
"merriami", "ordii", "flavus", "spectabilis", "flavus", "merriami",
"merriami", "megalotis", "merriami", "megalotis", "spectabilis",
"megalotis", "maniculatus", "penicillatus", "merriami", "merriami",
"eremicus", "eremicus", "merriami", "megalotis", "merriami",
"spectabilis", "merriami", "albigula", "ordii", "ordii", "merriami",
"ordii", "albigula", "merriami", "flavus", "merriami", "merriami",
"merriami", "flavus", "merriami", "merriami", "spectabilis",
"merriami", "spectabilis", "spectabilis", "merriami", "torridus",
"torridus", "merriami", "spectabilis", "eremicus", "merriami",
"albigula", "merriami", "spectabilis", "spectabilis", "leucogaster",
"maniculatus", "leucogaster", "spectabilis", "spectabilis", "megalotis",
"merriami", "megalotis", "megalotis", "megalotis", "ordii", "merriami",
"spectabilis", "flavus", "penicillatus", "merriami", "megalotis",
"torridus", "megalotis", "maniculatus", "merriami", "spectabilis",
"megalotis", "spectabilis", "merriami", "spectabilis", "merriami",
"megalotis", "megalotis", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "torridus", "merriami", "merriami",
"spectabilis", "megalotis", "spectabilis", "merriami", "eremicus",
"ordii", "merriami", "maniculatus", "leucogaster", "torridus",
"megalotis", "spectabilis", "maniculatus", "merriami", "penicillatus",
"eremicus", "megalotis", "spectabilis", "spilosoma", "eremicus",
"maniculatus", "merriami", "merriami", "ordii", "spectabilis",
"albigula", "ordii", "spectabilis", "spectabilis", "penicillatus",
"spectabilis", "spectabilis", "flavus", "merriami", "merriami",
"eremicus", "megalotis", "merriami", "maniculatus", "merriami",
"eremicus", "flavus", "merriami", "spectabilis", "eremicus",
"ordii", "megalotis", "eremicus", "spectabilis", "merriami",
"merriami", "ordii", "merriami", "spectabilis", "maniculatus",
"merriami", "megalotis", "torridus", "spectabilis", "merriami",
"spectabilis", "eremicus", "albigula", "maniculatus", "spectabilis",
"megalotis", "merriami", "merriami", "eremicus", "ordii", "merriami",
"megalotis", "ordii", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "megalotis", "spectabilis", "penicillatus",
"merriami", "maniculatus", "fulvescens", "spectabilis", "merriami",
"spectabilis", "albigula", "spectabilis", "megalotis", "albigula",
"spectabilis", "merriami", "maniculatus", "spectabilis", "spectabilis",
"spectabilis", "merriami", "maniculatus", "flavus", "megalotis",
"albigula", "merriami", "spectabilis", "megalotis", "spectabilis",
"spectabilis", "ordii", "spectabilis", "maniculatus", "eremicus",
"ordii", "ordii", "albigula", "spectabilis", "spectabilis", "spectabilis",
"megalotis", "leucogaster", "spectabilis", "spectabilis", "merriami",
"merriami", "megalotis", "megalotis", "spectabilis", "spectabilis",
"merriami", "merriami", "flavus", "ordii", "merriami", "merriami",
"spectabilis", "spectabilis", "eremicus", "spectabilis", "merriami",
"flavus", "merriami", "spectabilis", "spectabilis", "merriami",
"flavus", "eremicus", "maniculatus", "torridus", "spectabilis",
"spectabilis", "spectabilis", "flavus", "albigula", "albigula",
"albigula", "merriami", "merriami", "megalotis", "merriami",
"eremicus", "merriami", "spectabilis", "albigula", "hispidus",
"spectabilis", "flavus", "megalotis", "merriami", "spectabilis",
"ordii", "spectabilis", "merriami", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "maniculatus", "flavus",
"spilosoma", "merriami", "ordii", "spectabilis", "spectabilis",
"merriami", "merriami", "merriami", "albigula", "merriami", "penicillatus",
"megalotis", "spectabilis", "eremicus", "merriami", "spectabilis",
"merriami", "merriami", "megalotis", "merriami", "spectabilis",
"maniculatus", "albigula", "megalotis", "merriami", "maniculatus",
"spectabilis", "megalotis", "spectabilis", "merriami", "eremicus",
"merriami", "eremicus", "merriami", "spectabilis", "merriami",
"albigula", "spectabilis", "torridus", "merriami", "torridus",
"penicillatus", "torridus", "merriami", "megalotis", "leucogaster",
"merriami", "spectabilis", "flavus", "eremicus", "merriami",
"eremicus", "merriami", "albigula", "spectabilis", "albigula",
"megalotis", "flavus", "megalotis", "ordii", "torridus", "spectabilis",
"megalotis", "albigula", "spectabilis", "merriami", "spectabilis",
"spectabilis", "merriami", "spectabilis", "spectabilis", "albigula",
"ordii", "leucogaster", "ordii", "merriami", "eremicus", "flavus",
"ordii", "leucogaster", "merriami", "spectabilis", "merriami",
"spectabilis", "spectabilis", "spectabilis", "merriami", "ordii",
"merriami", "eremicus", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "eremicus", "eremicus", "flavus",
"megalotis", "albigula", "penicillatus", "spectabilis", "torridus",
"merriami", "merriami", "merriami", "leucogaster", "merriami",
"spectabilis", "merriami", "spectabilis", "merriami", "merriami",
"leucogaster", "albigula", "leucogaster", "merriami", "megalotis",
"megalotis", "merriami", "eremicus", "flavus", "flavus", "flavus",
"merriami", "flavus", "megalotis", "torridus", "albigula", "spectabilis",
"ordii", "spilosoma", "albigula", "spectabilis", "spectabilis",
"maniculatus", "spectabilis", "spectabilis", "spectabilis", "merriami",
"merriami", "spectabilis", "albigula", "flavus", "merriami",
"megalotis", "flavus", "flavus", "merriami", "ordii", "spectabilis",
"spilosoma", "eremicus", "albigula", "merriami", "albigula",
"albigula", "spectabilis", "flavus", "merriami", "spectabilis",
"flavus", "merriami", "flavus", "maniculatus", "merriami", "spectabilis",
"merriami", "eremicus", "albigula", "spectabilis", "eremicus",
"spectabilis", "spectabilis", "merriami", "eremicus", "spectabilis",
"albigula", "merriami", "flavus", "ordii", "merriami", "spectabilis",
"merriami", "megalotis", "spectabilis", "merriami", "merriami",
"torridus", "albigula", "merriami", "albigula", "spectabilis",
"merriami", "ordii", "megalotis", "spectabilis", "torridus",
"penicillatus", "torridus", "spectabilis", "flavus", "merriami",
"eremicus", "ordii", "eremicus", "merriami", "megalotis", "spectabilis",
"spectabilis", "eremicus", "penicillatus", "hispidus", "megalotis",
"spectabilis", "merriami", "spectabilis", "spectabilis", "merriami",
"maniculatus", "merriami", "maniculatus", "eremicus", "megalotis",
"merriami", "spectabilis", "merriami", "spilosoma", "merriami",
"merriami", "spectabilis", "ordii", "maniculatus", "megalotis",
"ordii", "spectabilis", "albigula", "spectabilis", "merriami",
"merriami", "torridus", "albigula", "spectabilis", "merriami",
"albigula", "spectabilis", "spectabilis", "merriami", "merriami",
"albigula", "leucogaster", "flavus", "spectabilis", "penicillatus",
"merriami", "merriami", "spectabilis", "merriami", "flavus",
"flavus", "merriami", "merriami", "spectabilis", "merriami",
"eremicus", "maniculatus", "penicillatus", "spectabilis", "spectabilis",
"spectabilis", "merriami", "merriami", "ordii", "torridus", "merriami",
"leucogaster", "merriami", "leucogaster", "ordii", "penicillatus",
"spectabilis", "spectabilis", "leucogaster", "leucogaster", "merriami",
"spectabilis", "penicillatus", "torridus", "eremicus", "spectabilis",
"ordii", "leucogaster", "merriami", "torridus", "spectabilis",
"torridus", "merriami", "spectabilis", "albigula", "flavus",
"penicillatus", "merriami", "albigula", "torridus", "torridus",
"spectabilis", "merriami", "spectabilis", "flavus", "torridus",
"flavus", "spectabilis", "merriami", "ordii", "flavus", "merriami",
"eremicus", "albigula", "merriami", "spectabilis", "leucogaster",
"merriami", "spectabilis", "merriami", "spectabilis", "flavus",
"merriami", "merriami", "spectabilis", "maniculatus", "spectabilis",
"ordii", "albigula", "spectabilis", "leucogaster", "flavus",
"flavus", "spectabilis", "spectabilis", "ordii", "merriami",
"spectabilis", "merriami", "eremicus", "eremicus", "merriami",
"spectabilis", "megalotis", "merriami", "albigula", "spectabilis",
"merriami", "ordii", "albigula", "merriami", "maniculatus", "merriami",
"torridus", "penicillatus", "merriami", "spectabilis", "spectabilis",
"spectabilis", "merriami", "maniculatus", "albigula", "merriami",
"merriami", "albigula", "albigula", "spectabilis", "spectabilis",
"penicillatus", "flavus", "merriami", "flavus", "ordii", "merriami",
"penicillatus", "merriami", "flavus", "maniculatus", "megalotis",
"merriami", "merriami", "flavus", "merriami", "spilosoma", "merriami",
"merriami", "merriami", "merriami", "albigula", "merriami", "torridus",
"flavus", "flavus", "merriami", "albigula", "merriami", "merriami",
"spectabilis", "ordii", "merriami", "merriami", "spectabilis",
"maniculatus", "spectabilis", "albigula", "albigula", "flavus",
"albigula", "torridus", "spectabilis", "maniculatus", "merriami",
"merriami", "merriami", "merriami", "albigula", "maniculatus",
"penicillatus", "ordii", "albigula", "megalotis", "spectabilis",
"megalotis", "spectabilis", "spectabilis", "spectabilis", "maniculatus",
"flavus", "spectabilis", "flavus", "flavus", "flavus", "spectabilis",
"merriami", "albigula", "eremicus", "eremicus", "albigula", "albigula",
"flavus", "torridus", "eremicus", "eremicus", "spectabilis",
"merriami", "torridus", "maniculatus", "spectabilis", "eremicus",
"spectabilis", "merriami", "maniculatus", "torridus", "maniculatus",
"spectabilis", "megalotis", "merriami", "merriami", "ordii",
"spectabilis", "merriami", "eremicus", "penicillatus", "spectabilis",
"merriami", "ordii", "penicillatus", "merriami", "flavus", "flavus",
"maniculatus", "torridus", "merriami", "spectabilis", "spectabilis",
"spilosoma", "flavus", "albigula", "merriami", "leucogaster",
"merriami", "penicillatus", "merriami", "merriami", "maniculatus",
"merriami", "spectabilis", "merriami", "merriami", "leucogaster",
"megalotis", "merriami", "merriami", "spectabilis", "merriami",
"penicillatus", "torridus", "flavus", "merriami", "albigula",
"spectabilis", "spectabilis", "torridus", "albigula", "merriami",
"ordii", "maniculatus", "flavus", "megalotis", "merriami", "torridus",
"spectabilis", "merriami", "albigula", "flavus", "spectabilis",
"merriami", "maniculatus", "merriami", "merriami", "merriami",
"spectabilis", "merriami", "eremicus", "spectabilis", "ordii",
"maniculatus", "spectabilis", "merriami", "spectabilis", "megalotis",
"torridus", "merriami", "eremicus", "flavus", "albigula", "merriami",
"maniculatus", "merriami", "flavus", "ordii", "flavus", "eremicus",
"merriami", "penicillatus", "spectabilis", "albigula", "spectabilis",
"merriami", "maniculatus", "merriami", "spectabilis", "penicillatus",
"merriami", "spectabilis", "megalotis", "merriami", "merriami",
"spectabilis", "merriami", "flavus", "eremicus", "merriami",
"eremicus", "flavus", "spectabilis", "flavus", "flavus", "merriami",
"merriami", "flavus", "flavus", "penicillatus", "ordii", "ordii",
"merriami", "spilosoma", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "merriami", "albigula",
"spectabilis", "ordii", "albigula", "megalotis", "merriami",
"merriami", "maniculatus", "merriami", "flavus", "spectabilis",
"spectabilis", "albigula", "flavus", "albigula", "merriami",
"spectabilis", "merriami", "merriami", "eremicus", "spectabilis",
"merriami", "merriami", "albigula", "merriami", "megalotis",
"spectabilis", "spectabilis", "penicillatus", "leucogaster",
"flavus", "ordii", "albigula", "leucogaster", "megalotis", "merriami",
"torridus", "torridus", "albigula", "merriami", "merriami", "flavus",
"leucogaster", "merriami", "merriami", "flavus", "merriami",
"penicillatus", "merriami", "spectabilis", "torridus", "merriami",
"spectabilis", "merriami", "spectabilis", "merriami", "merriami",
"spectabilis", "torridus", "eremicus", "spectabilis", "merriami",
"spectabilis", "merriami", "albigula", "leucogaster", "torridus",
"merriami", "merriami", "merriami", "spectabilis", "ordii", "merriami",
"merriami", "merriami", "albigula", "leucogaster", "merriami",
"spectabilis", "merriami", "spectabilis", "spectabilis", "torridus",
"maniculatus", "spilosoma", "leucogaster", "merriami", "merriami",
"merriami", "spectabilis", "spilosoma", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "torridus", "flavus", "merriami",
"penicillatus", "merriami", "torridus", "ordii", "torridus",
"merriami", "spectabilis", "merriami", "merriami", "merriami",
"spectabilis", "ordii", "merriami", "flavus", "merriami", "torridus",
"leucogaster", "merriami", "merriami", "merriami", "maniculatus",
"ordii", "torridus", "merriami", "eremicus", "merriami", "sp.",
"merriami", "merriami", "torridus", "torridus", "penicillatus",
"merriami", "leucogaster", "maniculatus", "flavus", "spectabilis",
"flavus", "ordii", "merriami", "ordii", "merriami", "eremicus",
"merriami", "flavus", "flavus", "merriami", "merriami", "torridus",
"flavus", "albigula", "penicillatus", "merriami", "maniculatus",
"merriami", "ordii", "flavus", "albigula", "torridus", "spectabilis",
"merriami", "spectabilis", "merriami", "spectabilis", "torridus",
"spectabilis", "flavus", "maniculatus", "leucogaster", "merriami",
"penicillatus", "torridus", "merriami", "leucogaster", "leucogaster",
"merriami", "merriami", "merriami", "torridus", "albigula", "merriami",
"spectabilis", "merriami", "merriami", "merriami", "merriami",
"leucogaster", "merriami", "spectabilis", "merriami", "flavus",
"merriami", "flavus", "torridus", "flavus", "leucogaster", "merriami",
"spectabilis", "ordii", "maniculatus", "albigula", "leucogaster",
"torridus", "ordii", "torridus", "merriami", "merriami", "spectabilis",
"ordii", "leucogaster", "merriami", "leucogaster", "merriami",
"merriami", "flavus", "flavus", "merriami", "leucogaster", "torridus",
"megalotis", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "flavus", "merriami", "flavus", "merriami", "merriami",
"merriami", "ordii", "leucogaster", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "spectabilis",
"spectabilis", "maniculatus", "flavus", "merriami", "ordii",
"spectabilis", "leucogaster", "merriami", "flavus", "flavus",
"ordii", "albigula", "spectabilis", "eremicus", "flavus", "merriami",
"merriami", "merriami", "merriami", "leucogaster", "merriami",
"merriami", "spectabilis", "flavus", "spilosoma", "spectabilis",
"merriami", "flavus", "spectabilis", "albigula", "leucogaster",
"torridus", "merriami", "flavus", "ordii", "leucogaster", "spectabilis",
"spectabilis", "ordii", "spectabilis", "spectabilis", "flavus",
"torridus", "torridus", "maniculatus", "flavus", "leucogaster",
"leucogaster", "merriami", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "ordii", "flavus", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"torridus", "merriami", "leucogaster", "leucogaster", "torridus",
"maniculatus", "spectabilis", "maniculatus", "spectabilis", "ordii",
"merriami", "eremicus", "leucogaster", "merriami", "eremicus",
"ordii", "torridus", "eremicus", "ordii", "torridus", "merriami",
"merriami", "spectabilis", "spectabilis", "ordii", "merriami",
"leucogaster", "spectabilis", "merriami", "merriami", "ordii",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "merriami", "merriami",
"leucogaster", "merriami", "maniculatus", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "megalotis", "torridus",
"torridus", "merriami", "eremicus", "spectabilis", "spectabilis",
"merriami", "spectabilis", "spectabilis", "spectabilis", "torridus",
"ordii", "merriami", "merriami", "spectabilis", "spectabilis",
"merriami", "merriami", "flavus", "merriami", "spectabilis",
"spectabilis", "merriami", "flavus", "flavus", "spectabilis",
"megalotis", "ordii", "spectabilis", "merriami", "merriami",
"merriami", "spectabilis", "torridus", "spectabilis", "merriami",
"spectabilis", "torridus", "merriami", "merriami", "spectabilis",
"albigula", "megalotis", "spectabilis", "merriami", "merriami",
"spectabilis", "flavus", "merriami", "merriami", "torridus",
"spectabilis", "flavus", "torridus", "merriami", "merriami",
"torridus", "albigula", "merriami", "spectabilis", "leucogaster",
"spectabilis", "merriami", "torridus", "torridus", "ordii", "spectabilis",
"merriami", "leucogaster", "eremicus", "merriami", "torridus",
"ordii", "spectabilis", "merriami", "merriami", "spectabilis",
"spectabilis", "merriami", "merriami", "merriami", "spectabilis",
"leucogaster", "merriami", "merriami", "merriami", "merriami",
"merriami", "torridus", "torridus", "flavus", "eremicus", "merriami",
"spectabilis", "merriami", "spectabilis", "leucogaster", "merriami",
"merriami", "merriami", "torridus", "merriami", "merriami", "merriami",
"merriami", "ordii", "merriami", "spectabilis", "ordii", "spectabilis",
"merriami", "merriami", "spectabilis", "ordii", "leucogaster",
"torridus", "merriami", "megalotis", "spectabilis", "leucogaster",
"merriami", "albigula", "merriami", "merriami", "leucogaster",
"flavus", "merriami", "leucogaster", "megalotis", "ordii", "spectabilis",
"merriami", "merriami", "eremicus", "megalotis", "ordii", "merriami",
"torridus", "merriami", "spectabilis", "spectabilis", "maniculatus",
"flavus", "merriami", "merriami", "spectabilis", "torridus",
"torridus", "merriami", "leucogaster", "merriami", "eremicus",
"merriami", "merriami", "merriami", "merriami", "flavus", "megalotis",
"flavus", "flavus", "maniculatus", "merriami", "flavus", "merriami",
"flavus", "merriami", "spectabilis", "merriami", "merriami",
"megalotis", "merriami", "flavus", "spectabilis", "spectabilis",
"merriami", "megalotis", "merriami", "megalotis", "albigula",
"harrisi", "megalotis", "merriami", "merriami", "albigula", "ordii",
"spectabilis", "maniculatus", "leucogaster", "fulvescens", "albigula",
"megalotis", "merriami", "merriami", "merriami", "flavus", "flavus",
"flavus", "flavus", "ordii", "spectabilis", "spectabilis", "spectabilis",
"merriami", "ordii", "flavus", "spectabilis", "ordii", "albigula",
"spectabilis", "spectabilis", "albigula", "merriami", "albigula",
"torridus", "albigula", "merriami", "merriami", "merriami", "flavus",
"ordii", "spectabilis", "merriami", "ordii", "ordii", "merriami",
"spectabilis", "flavus", "ordii", "merriami", "leucogaster",
"ordii", "merriami", "albigula", "megalotis", "merriami", "merriami",
"maniculatus", "merriami", "megalotis", "flavus", "flavus", "leucogaster",
"eremicus", "merriami", "merriami", "eremicus", "flavus", "megalotis",
"flavus", "merriami", "spectabilis", "merriami", "merriami",
"merriami", "ordii", "merriami", "merriami", "leucogaster", "leucogaster",
"merriami", "merriami", "spectabilis", "ordii", "flavus", "spectabilis",
"flavus", "flavus", "ordii", "spectabilis", "spectabilis", "leucogaster",
"ordii", "merriami", "leucogaster", "ordii", "merriami", "spectabilis",
"flavus", "merriami", "flavus", "spectabilis", "merriami", "leucogaster",
"merriami", "spectabilis", "merriami", "torridus", "merriami",
"merriami", "torridus", "merriami", "ordii", "merriami", "merriami",
"maniculatus", "merriami", "albigula", "merriami", "merriami",
"albigula", "merriami", "merriami", "flavus", "spectabilis",
"maniculatus", "megalotis", "spectabilis", "ordii", "megalotis",
"ordii", "leucogaster", "leucogaster", "spectabilis", "leucogaster",
"megalotis", "leucogaster", "spectabilis", "merriami", "megalotis",
"merriami", "merriami", "merriami", "leucogaster", "merriami",
"torridus", "merriami", "megalotis", "leucogaster", "merriami",
"merriami", "merriami", "maniculatus", "spectabilis", "maniculatus",
"merriami", "megalotis", "spectabilis", "merriami", "megalotis",
"torridus", "merriami", "megalotis", "albigula", "flavus", "ordii",
"megalotis", "megalotis", "merriami", "merriami", "flavus", "merriami",
"flavus", "merriami", "leucogaster", "megalotis", "megalotis",
"maniculatus", "merriami", "spectabilis", "spectabilis", "merriami",
"merriami", "megalotis", "megalotis", "merriami", "merriami",
"merriami", "merriami", "megalotis", "spectabilis", "megalotis",
"torridus", "leucogaster", "megalotis", "merriami", "merriami",
"megalotis", "merriami", "merriami", "leucogaster", "ordii",
"merriami", "ordii", "merriami", "megalotis", "merriami", "ordii",
"leucogaster", "ordii", "ordii", "ordii", "flavus", "merriami",
"merriami", "merriami", "ordii", "merriami", "spectabilis", "ordii",
"ordii", "ordii", "merriami", "merriami", "flavus", "merriami",
"spectabilis", "merriami", "torridus", "merriami", "merriami",
"flavus", "merriami", "flavus", "flavus", "ordii", "merriami",
"merriami", "merriami", "ordii", "ordii", "merriami", "spectabilis",
"merriami", "merriami", "ordii", "spectabilis", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "flavus",
"spectabilis", "ordii", "leucogaster", "merriami", "merriami",
"merriami", "merriami", "merriami", "eremicus", "spectabilis",
"maniculatus", "spectabilis", "merriami", "merriami", "ordii",
"megalotis", "torridus", "merriami", "ordii", "leucogaster",
"merriami", "megalotis", "leucogaster", "merriami", "merriami",
"torridus", "ordii", "ordii", "merriami", "spectabilis", "torridus",
"torridus", "megalotis", "megalotis", "merriami", "leucogaster",
"merriami", "ordii", "leucogaster", "merriami", "megalotis",
"merriami", "flavus", "ordii", "merriami", "torridus", "merriami",
"spectabilis", "maniculatus", "merriami", "albigula", "merriami",
"ordii", "megalotis", "merriami", "merriami", "merriami", "megalotis",
"merriami", "merriami", "eremicus", "leucogaster", "megalotis",
"spectabilis", "ordii", "megalotis", "ordii", "merriami", "leucogaster",
"ordii", "spectabilis", "merriami", "ordii", "merriami", "ordii",
"megalotis", "merriami", "merriami", "megalotis", "merriami",
"megalotis", "megalotis", "merriami", "flavus", "merriami", "spectabilis",
"merriami", "merriami", "megalotis", "ordii", "merriami", "ordii",
"merriami", "spectabilis", "leucogaster", "ordii", "ordii", "merriami",
"merriami", "torridus", "merriami", "merriami", "maniculatus",
"ordii", "flavus", "spectabilis", "eremicus", "merriami", "merriami",
"merriami", "flavus", "leucogaster", "megalotis", "merriami",
"merriami", "spectabilis", "merriami", "megalotis", "merriami",
"merriami", "flavus", "merriami", "leucogaster", "merriami",
"spectabilis", "spilosoma", "merriami", "torridus", "eremicus",
"merriami", "merriami", "merriami", "merriami", "ordii", "merriami",
"megalotis", "spectabilis", "merriami", "spilosoma", "megalotis",
"merriami", "merriami", "megalotis", "megalotis", "megalotis",
"merriami", "megalotis", "spectabilis", "megalotis", "flavus",
"spectabilis", "megalotis", "merriami", "merriami", "flavus",
"merriami", "megalotis", "megalotis", "megalotis", "spectabilis",
"spectabilis", "merriami", "spectabilis", "flavus", "megalotis",
"ordii", "megalotis", "maniculatus", "megalotis", "leucogaster",
"megalotis", "merriami", "ordii", "flavus", "megalotis", "merriami",
"merriami", "flavus", "merriami", "merriami", "ordii", "merriami",
"eremicus", "spectabilis", "merriami", "megalotis", "merriami",
"merriami", "merriami", "torridus", "megalotis", "merriami",
"hispidus", "leucogaster", "merriami", "leucogaster", "torridus",
"megalotis", "flavus", "merriami", "megalotis", "merriami", "megalotis",
"merriami", "spectabilis", "flavus", "megalotis", "merriami",
"merriami", "merriami", "ordii", "merriami", "megalotis", "merriami",
"spectabilis", "megalotis", "merriami", "spectabilis", "merriami",
"megalotis", "ordii", "spectabilis", "merriami", "torridus",
"merriami", "merriami", "merriami", "ordii", "leucogaster", "flavus",
"flavus", "flavus", "merriami", "merriami", "ordii", "leucogaster",
"torridus", "merriami", "ordii", "ordii", "merriami", "ordii",
"ordii", "spectabilis", "ordii", "ordii", "flavus", "flavus",
"megalotis", "megalotis", "leucogaster", "flavus", "spectabilis",
"spectabilis", "merriami", "merriami", "leucogaster", "eremicus",
"ordii", "spectabilis", "flavus", "merriami", "megalotis", "ordii",
"megalotis", "merriami", "spectabilis", "flavus", "ordii", "leucogaster",
"flavus", "merriami", "flavus", "merriami", "flavus", "flavus",
"spectabilis", "merriami", "merriami", "flavus", "ordii", "spectabilis",
"leucogaster", "eremicus", "merriami", "ordii", "leucogaster",
"merriami", "merriami", "merriami", "megalotis", "flavus", "spectabilis",
"merriami", "flavus", "merriami", "merriami", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "leucogaster", "merriami",
"torridus", "merriami", "megalotis", "merriami", "merriami",
"eremicus", "megalotis", "ordii", "spectabilis", "flavus", "flavus",
"merriami", "penicillatus", "ordii", "albigula", "harrisi", "spectabilis",
"megalotis", "leucogaster", "albigula", "flavus", "merriami",
"ordii", "megalotis", "ordii", "spectabilis", "spectabilis",
"megalotis", "spectabilis", "megalotis", "flavus", "ordii", "flavus",
"merriami", "spectabilis", "merriami", "spectabilis", "spectabilis",
"spectabilis", "merriami", "megalotis", "megalotis", "merriami",
"merriami", "merriami", "spectabilis", "maniculatus", "merriami",
"merriami", "merriami", "merriami", "hispidus", "spectabilis",
"merriami", "spectabilis", "merriami", "megalotis", "eremicus",
"leucogaster", "albigula", "megalotis", "megalotis", "merriami",
"megalotis", "merriami", "merriami", "spectabilis", "flavus",
"merriami", "merriami", "flavus", "leucogaster", "merriami",
"merriami", "flavus", "eremicus", "flavus", "flavus", "merriami",
"spectabilis", "spectabilis", "eremicus", "merriami", "ordii",
"merriami", "eremicus", "ordii", "flavus", "spectabilis", "spectabilis",
"spectabilis", "megalotis", "merriami", "flavus", "flavus", "flavus",
"merriami", "spectabilis", "eremicus", "spectabilis", "merriami",
"ordii", "spectabilis", "ordii", "merriami", "flavus", "merriami",
"spectabilis", "megalotis", "spectabilis", "spectabilis", "eremicus",
"merriami", "ordii", "merriami", "flavus", "merriami", "flavus",
"flavus", "spectabilis", "flavus", "ordii", "flavus", "spectabilis",
"spectabilis", "merriami", "flavus", "eremicus", "maniculatus",
"ordii", "megalotis", "penicillatus", "spectabilis", "maniculatus",
"merriami", "merriami", "flavus", "spectabilis", "flavus", "spectabilis",
"merriami", "flavus", "spectabilis", "spectabilis", "megalotis",
"merriami", "flavus", "megalotis", "spectabilis", "leucogaster",
"ordii", "spectabilis", "merriami", "flavus", "spectabilis",
"eremicus", "merriami", "maniculatus", "flavus", "spectabilis",
"megalotis", "merriami", "spectabilis", "merriami", "ordii",
"merriami", "merriami", "penicillatus", "spectabilis", "flavus",
"merriami", "megalotis", "eremicus", "megalotis", "merriami",
"eremicus", "spectabilis", "eremicus", "spectabilis", "megalotis",
"penicillatus", "spectabilis", "merriami", "merriami", "torridus",
"spectabilis", "spectabilis", "flavus", "flavus", "ordii", "merriami",
"spectabilis", "merriami", "megalotis", "flavus", "torridus",
"ordii", "eremicus", "merriami", "spectabilis", "eremicus", "spectabilis",
"spectabilis", "maniculatus", "merriami", "merriami", "maniculatus",
"torridus", "merriami", "torridus", "merriami", "megalotis",
"spectabilis", "merriami", "megalotis", "spectabilis", "albigula",
"merriami", "albigula", "eremicus", "merriami", "eremicus", "megalotis",
"ordii", "albigula", "eremicus", "spectabilis", "spectabilis",
"merriami", "megalotis", "merriami", "flavus", "maniculatus",
"merriami", "eremicus", "megalotis", "penicillatus", "merriami",
"torridus", "spectabilis", "spectabilis", "merriami", "ordii",
"eremicus", "merriami", "flavus", "flavus", "merriami", "flavus",
"eremicus", "spectabilis", "merriami", "torridus", "spectabilis",
"spectabilis", "merriami", "flavus", "spectabilis", "spectabilis",
"merriami", "penicillatus", "torridus", "merriami", "albigula",
"merriami", "eremicus", "spectabilis", "flavus", "flavus", "albigula",
"spectabilis", "spectabilis", "spectabilis", "flavus", "megalotis",
"spectabilis", "flavus", "penicillatus", "ordii", "torridus",
"spectabilis", "spectabilis", "merriami", "merriami", "merriami",
"merriami", "megalotis", "spectabilis", "merriami", "merriami",
"megalotis", "merriami", "megalotis", "megalotis", "torridus",
"spectabilis", "merriami", "flavus", "merriami", "merriami",
"merriami", "ordii", "ordii", "albigula", "penicillatus", "spectabilis",
"spectabilis", "spectabilis", "maniculatus", "ordii", "maniculatus",
"spectabilis", "merriami", "ordii", "ordii", "albigula", "merriami",
"spectabilis", "ordii", "ordii", "megalotis", "albigula", "spectabilis",
"merriami", "eremicus", "albigula", "eremicus", "merriami", "ordii",
"spectabilis", "maniculatus", "merriami", "flavus", "albigula",
"torridus", "merriami", "torridus", "merriami", "ordii", "merriami",
"torridus", "merriami", "ordii", "spectabilis", "flavus", "merriami",
"merriami", "merriami", "spectabilis", "megalotis", "spectabilis",
"torridus", "flavus", "merriami", "spectabilis", "merriami",
"albigula", "torridus", "penicillatus", "merriami", "leucogaster",
"spilosoma", "spectabilis", "spectabilis", "albigula", "merriami",
"spectabilis", "spectabilis", "merriami", "flavus", "merriami",
"merriami", "ordii", "ordii", "torridus", "flavus", "ordii",
"torridus", "spectabilis", "spectabilis", "spilosoma", "penicillatus",
"spectabilis", "albigula", "merriami", "flavus", "flavus", "flavus",
"ordii", "spectabilis", "merriami", "spectabilis", "leucogaster",
"albigula", "flavus", "spectabilis", "spectabilis", "flavus",
"spectabilis", "merriami", "merriami", "spectabilis", "merriami",
"spectabilis", "leucogaster", "ordii", "spectabilis", "merriami",
"ordii", "merriami", "leucogaster", "spectabilis", "merriami",
"merriami", "merriami", "penicillatus", "merriami", "torridus",
"flavus", "merriami", "albigula", "albigula", "spectabilis",
"merriami", "ordii", "maniculatus", "merriami", "ordii", "spectabilis",
"merriami", "spectabilis", "merriami", "megalotis", "albigula",
"merriami", "merriami", "merriami", "flavus", "albigula", "maniculatus",
"ordii", "torridus", "merriami", "maniculatus", "merriami", "torridus",
"spectabilis", "megalotis", "ordii", "maniculatus", "flavus",
"ordii", "ordii", "spectabilis", "merriami", "merriami", "merriami",
"penicillatus", "spectabilis", "torridus", "flavus", "spectabilis",
"albigula", "spectabilis", "merriami", "merriami", "spilosoma",
"albigula", "torridus", "albigula", "merriami", "merriami", "leucogaster",
"merriami", "megalotis", "ordii", "merriami", "merriami", "torridus",
"ordii", "spectabilis", "merriami", "merriami", "merriami", "torridus",
"flavus", "albigula", "leucogaster", "spectabilis", "penicillatus",
"merriami", "flavus", "penicillatus", "merriami", "ordii", "leucogaster",
"penicillatus", "spilosoma", "albigula", "merriami", "spectabilis",
"albigula", "leucogaster", "ordii", "merriami", "torridus", "merriami",
"megalotis", "merriami", "spectabilis", "spectabilis", "merriami",
"maniculatus", "merriami", "spectabilis", "spectabilis", "penicillatus",
"albigula", "penicillatus", "albigula", "merriami", "ordii",
"albigula", "spectabilis", "merriami", "spectabilis", "merriami",
"torridus", "spectabilis", "merriami", "sp.", "albigula", "spectabilis",
"torridus", "merriami", "merriami", "merriami", "merriami", "ordii",
"merriami", "ordii", "merriami", "ordii", "spectabilis", "maniculatus",
"merriami", "merriami", "merriami", "ordii", "albigula", "merriami",
"merriami", "penicillatus", "merriami", "eremicus", "merriami",
"merriami", "merriami", "penicillatus", "albigula", "merriami",
"torridus", "torridus", "albigula", "albigula", "merriami", "ordii",
"spectabilis", "torridus", "spectabilis", "albigula", "albigula",
"penicillatus", "leucogaster", "ordii", "merriami", "flavus",
"ordii", "leucogaster", "flavus", "spectabilis", "spilosoma",
"flavus", "megalotis", "merriami", "spectabilis", "flavus", "torridus",
"spectabilis", "albigula", "merriami", "merriami", "torridus",
"merriami", "merriami", "merriami", "flavus", "spectabilis",
"merriami", "spectabilis", "torridus", "merriami", "maniculatus",
"merriami", "albigula", "merriami", "spectabilis", "spectabilis",
"penicillatus", "merriami", "flavus", "penicillatus", "torridus",
"flavus", "spectabilis", "penicillatus", "merriami", "merriami",
"penicillatus", "albigula", "merriami", "albigula", "merriami",
"spectabilis", "merriami", "merriami", "spectabilis", "albigula",
"spectabilis", "merriami", "merriami", "maniculatus", "albigula",
"ordii", "albigula", "spectabilis", "ordii", "penicillatus",
"merriami", "albigula", "merriami", "albigula", "albigula", "merriami",
"spectabilis", "albigula", "ordii", "spectabilis", "albigula",
"flavus", "merriami", "ordii", "merriami", "merriami", "eremicus",
"ordii", "spectabilis", "spectabilis", "spilosoma", "merriami",
"merriami", "megalotis", "spectabilis", "eremicus", "merriami",
"merriami", "albigula", "merriami", "spilosoma", "merriami",
"merriami", "merriami", "albigula", "albigula", "ordii", "albigula",
"maniculatus", "merriami", "merriami", "torridus", "spectabilis",
"ordii", "merriami", "merriami", "torridus", "albigula", "flavus",
"merriami", "leucogaster", "ordii", "leucogaster", "spectabilis",
"spectabilis", "spilosoma", "spectabilis", "spectabilis", "megalotis",
"merriami", "penicillatus", "penicillatus", "ordii", "flavus",
"ordii", "spectabilis", "merriami", "albigula", "spectabilis",
"merriami", "spectabilis", "merriami", "ordii", "albigula", "merriami",
"merriami", "merriami", "megalotis", "spectabilis", "merriami",
"spectabilis", "torridus", "spectabilis", "ordii", "merriami",
"albigula", "megalotis", "albigula", "merriami", "leucogaster",
"spectabilis", "flavus", "flavus", "spectabilis", "spilosoma",
"albigula", "spectabilis", "spectabilis", "torridus", "merriami",
"ordii", "maniculatus", "albigula", "merriami", "merriami", "flavus",
"albigula", "merriami", "penicillatus", "ordii", "merriami",
"penicillatus", "penicillatus", "ordii", "albigula", "merriami",
"leucogaster", "albigula", "spectabilis", "spectabilis", "merriami",
"spectabilis", "merriami", "spectabilis", "spilosoma", "merriami",
"spectabilis", "maniculatus", "spectabilis", "leucogaster", "flavus",
"albigula", "flavus", "spectabilis", "albigula", "megalotis",
"spectabilis", "merriami", "ordii", "merriami", "merriami", "spectabilis",
"spectabilis", "merriami", "ordii", "spectabilis", "leucogaster",
"merriami", "albigula", "megalotis", "ordii", "merriami", "spectabilis",
"torridus", "torridus", "torridus", "spectabilis", "maniculatus",
"merriami", "merriami", "merriami", "albigula", "merriami", "merriami",
"torridus", "merriami", "merriami", "flavus", "ordii", "ordii",
"eremicus", "eremicus", "spectabilis", "spectabilis", "merriami",
"albigula", "merriami", "merriami", "torridus", "spectabilis",
"albigula", "ordii", "merriami", "merriami", "albigula", "spectabilis",
"spectabilis", "albigula", "merriami", "torridus", "torridus",
"spectabilis", "ordii", "ordii", "merriami", "spectabilis", "merriami",
"albigula", "spectabilis", "spectabilis", "torridus", "merriami",
"albigula", "ordii", "merriami", "ordii", "torridus", "merriami",
"merriami", "merriami", "spectabilis", "spectabilis", "merriami",
"spectabilis", "albigula", "spectabilis", "albigula", "spectabilis",
"merriami", "merriami", "megalotis", "merriami", "ordii", "merriami",
"merriami", "spectabilis", "merriami", "maniculatus", "torridus",
"spectabilis", "ordii", "ordii", "merriami", "merriami", "spectabilis",
"ordii", "merriami", "merriami", "merriami", "spectabilis", "spectabilis",
"spectabilis", "spectabilis", "albigula", "penicillatus", "leucogaster",
"merriami", "merriami", "merriami", "spectabilis", "ordii", "spectabilis",
"merriami", "merriami", "albigula", "merriami", "merriami", "torridus",
"torridus", "flavus", "spectabilis", "albigula", "spectabilis",
"merriami", "albigula", "merriami", "torridus", "spectabilis",
"spectabilis", "merriami", "torridus", "spectabilis", "merriami",
"merriami", "megalotis", "torridus", "maniculatus", "ordii",
"leucogaster", "ordii", "torridus", "megalotis", "ordii", "torridus",
"spectabilis", "maniculatus", "megalotis", "ordii", "ordii",
"merriami", "leucogaster", "spectabilis", "ordii", "megalotis",
"merriami", "merriami", "torridus", "merriami", "merriami", "ordii",
"spectabilis", "merriami", "leucogaster", "ordii", "merriami",
"merriami", "torridus", "spectabilis", "ordii", "merriami", "megalotis",
"merriami", "flavus", "ordii", "spectabilis", "merriami", "torridus",
"merriami", "merriami", "merriami", "merriami", "albigula", "spectabilis",
"spectabilis", "albigula", "flavus", "spectabilis", "spectabilis",
"megalotis", "merriami", "spectabilis", "merriami", "spectabilis",
"torridus", "ordii", "merriami", "albigula", "leucogaster", "spectabilis",
"merriami", "merriami", "harrisi", "spectabilis", "maniculatus",
"maniculatus", "penicillatus", "ordii", "spectabilis", "maniculatus",
"ordii", "torridus", "merriami", "albigula", "merriami", "spectabilis",
"leucogaster", "merriami", "albigula", "merriami", "spectabilis",
"merriami", "merriami", "ordii", "spectabilis", "megalotis",
"megalotis", "merriami", "merriami", "albigula", "merriami",
"torridus", "merriami", "merriami", "merriami", "spectabilis",
"albigula", "ordii", "maniculatus", "merriami", "leucogaster",
"merriami", "spectabilis", "spectabilis", "ordii", "merriami",
"merriami", "torridus", "spectabilis", "maniculatus", "spectabilis",
"ordii", "megalotis", "eremicus", "torridus", "merriami", "eremicus",
"albigula", "leucogaster", "ordii", "leucogaster", "leucogaster",
"spectabilis", "megalotis", "merriami", "spectabilis", "merriami",
"merriami", "torridus", "leucogaster", "megalotis", "merriami",
"ordii", "torridus", "merriami", "spectabilis", "merriami", "ordii",
"maniculatus", "merriami", "spectabilis", "spectabilis", "merriami",
"merriami", "spectabilis", "merriami", "merriami", "ordii", "spectabilis",
"merriami", "albigula", "torridus", "flavus", "merriami", "megalotis",
"merriami", "megalotis", "albigula", "merriami", "megalotis",
"albigula", "merriami", "spectabilis", "merriami", "maniculatus",
"spectabilis", "ordii", "merriami", "spectabilis", "spectabilis",
"merriami", "leucogaster", "albigula", "torridus", "merriami",
"spectabilis", "spectabilis", "ordii", "spectabilis", "spectabilis",
"merriami", "leucogaster", "merriami", "ordii", "ordii", "albigula",
"spectabilis", "merriami", "ordii", "merriami", "merriami", "merriami",
"torridus", "ordii", "merriami", "albigula", "leucogaster", "maniculatus",
"merriami", "albigula", "merriami", "torridus", "merriami", "spectabilis",
"megalotis", "spectabilis", "torridus", "merriami", "spectabilis",
"spectabilis", "ordii", "spectabilis", "eremicus", "merriami",
"merriami", "spectabilis", "merriami", "ordii", "merriami", "megalotis",
"merriami", "torridus", "merriami", "merriami", "merriami", "megalotis",
"spectabilis", "torridus", "ordii", "megalotis", "merriami",
"merriami", "spilosoma", "merriami", "merriami", "megalotis",
"megalotis", "megalotis", "torridus", "merriami", "torridus",
"merriami", "merriami", "spectabilis", "maniculatus", "megalotis",
"spectabilis", "leucogaster", "merriami", "spectabilis", "spectabilis",
"merriami", "spectabilis", "spectabilis", "merriami", "merriami",
"spectabilis", "merriami", "spectabilis", "megalotis", "ordii",
"megalotis", "megalotis", "merriami", "megalotis", "megalotis",
"ordii", "merriami", "spectabilis", "megalotis", "merriami",
"ordii", "merriami", "albigula", "merriami", "spectabilis", "leucogaster",
"merriami", "spectabilis", "megalotis", "megalotis", "leucogaster",
"merriami", "spectabilis", "merriami", "albigula", "albigula",
"merriami", "ordii", "merriami", "spectabilis", "ordii", "megalotis",
"merriami", "leucogaster", "megalotis", "merriami", "merriami",
"spectabilis", "merriami", "ordii", "merriami", "ordii", "ordii",
"merriami", "merriami", "merriami", "ordii", "merriami", "merriami",
"spectabilis", "merriami", "ordii", "megalotis", "merriami",
"spectabilis", "leucogaster", "merriami", "merriami", "leucogaster",
"merriami", "spectabilis", "merriami", "merriami", "maniculatus",
"leucogaster", "spectabilis", "merriami", "megalotis", "maniculatus",
"torridus", "merriami", "merriami", "merriami", "ordii", "spectabilis",
"megalotis", "spectabilis", "merriami", "megalotis", "spectabilis",
"merriami", "merriami", "spectabilis", "ordii", "spectabilis",
"ordii", "spectabilis", "maniculatus", "merriami", "merriami",
"merriami", "merriami", "merriami", "ordii", "merriami", "spectabilis",
"merriami", "spectabilis", "merriami", "leucogaster", "leucogaster",
"merriami", "merriami", "merriami", "spectabilis", "spectabilis",
"spectabilis", "merriami", "merriami", "ordii", "merriami", "merriami",
"albigula", "spectabilis", "spectabilis", "ordii", "penicillatus",
"penicillatus", "merriami", "ordii", "merriami", "merriami",
"leucogaster", "merriami", "ordii", "merriami", "spectabilis",
"spectabilis", "leucogaster", "spectabilis", "albigula", "spilosoma",
"merriami", "spectabilis", "spectabilis", "torridus", "maniculatus",
"merriami", "megalotis", "maniculatus", "spectabilis", "albigula",
"merriami", "spectabilis", "merriami", "flavus", "ordii", "albigula",
"ordii", "merriami", "spectabilis", "merriami", "merriami", "megalotis",
"spectabilis", "spectabilis", "albigula", "spectabilis", "megalotis",
"spectabilis", "merriami", "merriami", "flavus", "spectabilis",
"merriami", "merriami", "penicillatus", "spectabilis", "ordii",
"albigula", "merriami", "merriami", "torridus", "albigula", "spectabilis",
"maniculatus", "merriami", "merriami", "merriami", "spectabilis",
"ordii", "leucogaster", "merriami", "ordii", "penicillatus",
"penicillatus", "torridus", "leucogaster", "penicillatus", "spectabilis",
"albigula", "spectabilis", "merriami", "merriami", "eremicus",
"merriami", "leucogaster", "ordii", "merriami", "flavus", "merriami",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"merriami", "spectabilis", "eremicus", "torridus", "ordii", "merriami",
"albigula", "spectabilis", "ordii", "merriami", "ordii", "merriami",
"merriami", "ordii", "merriami", "merriami", "merriami", "merriami",
"merriami", "eremicus", "merriami", "torridus", "megalotis",
"merriami", "merriami", "merriami", "merriami", "merriami", "spectabilis",
"leucogaster", "albigula", "spectabilis", "eremicus", "merriami",
"ordii", "merriami", "merriami", "merriami", "merriami", "ordii",
"torridus", "ordii", "ordii", "merriami", "merriami", "eremicus",
"penicillatus", "merriami", "spectabilis", "merriami", "leucogaster",
"ordii", "merriami", "ordii", "merriami", "merriami", "merriami",
"albigula", "merriami", "merriami", "maniculatus", "merriami",
"leucogaster", "merriami", "merriami", "ordii", "merriami", "albigula",
"merriami", "merriami", "merriami", "spectabilis", "leucogaster",
"merriami", "megalotis", "merriami", "ordii", "ordii", "spectabilis",
"leucogaster", "merriami", "leucogaster", "spectabilis", "ordii",
"merriami", "merriami", "ordii", "penicillatus", "megalotis",
"maniculatus", "merriami", "ordii", "megalotis", "merriami",
"merriami", "merriami", "ordii", "ordii", "spectabilis", "merriami",
"merriami", "spectabilis", "merriami", "merriami", "merriami",
"ordii", "spectabilis", "merriami", "ordii", "merriami", "merriami",
"merriami", "merriami", "merriami", "ordii", "merriami", "merriami",
"ordii", "merriami", "torridus", "merriami", "merriami", "ordii",
"merriami", "ordii", "merriami", "leucogaster", "merriami", "merriami",
"eremicus", "albigula", "torridus", "ordii", "torridus", "merriami",
"albigula", "ordii", "spectabilis", "sp.", "merriami", "merriami",
"merriami", "torridus", "leucogaster", "ordii", "megalotis",
"leucogaster", "merriami", "albigula", "albigula", "merriami",
"merriami", "spectabilis", "merriami", "ordii", "merriami", "albigula",
"merriami", "megalotis", "merriami", "merriami", "megalotis",
"leucogaster", "spilosoma", "merriami", "megalotis", "merriami",
"merriami", "leucogaster", "leucogaster", "spectabilis", "penicillatus",
"maniculatus", "penicillatus", "penicillatus", "merriami", "merriami",
"ordii", "albigula", "albigula", "ordii", "leucogaster", "merriami",
"flavus", "merriami", "merriami", "ordii", "torridus", "albigula",
"merriami", "merriami", "albigula", "merriami", "megalotis",
"ordii", "merriami", "merriami", "leucogaster", "torridus", "penicillatus",
"merriami", "merriami", "merriami", "albigula", "merriami", "leucogaster",
"eremicus", "spilosoma", "spilosoma", "merriami", "megalotis",
"leucogaster", "merriami", "merriami", "spectabilis", "merriami",
"albigula", "ordii", "merriami", "spilosoma", "torridus", "eremicus",
"albigula", "megalotis", "megalotis", "albigula", "merriami",
"torridus", "merriami", "megalotis", "torridus", "merriami",
"merriami", "merriami", "leucogaster", "merriami", "spilosoma",
"merriami", "merriami", "ordii", "ordii", "penicillatus", "megalotis",
"merriami", "eremicus", "merriami", "merriami", "merriami", "ordii",
"megalotis", "leucogaster", "merriami", "ordii", "megalotis",
"ordii", "leucogaster", "leucogaster", "leucogaster", "albigula",
"albigula", "torridus", "merriami", "megalotis", "albigula",
"torridus", "penicillatus", "merriami", "merriami", "merriami",
"merriami", "penicillatus", "merriami", "leucogaster", "albigula",
"leucogaster", "merriami", "penicillatus", "ordii", "merriami",
"merriami", "merriami", "eremicus", "megalotis", "torridus",
"merriami", "megalotis", "torridus", "spilosoma", "albigula",
"merriami", "maniculatus", "ordii", "albigula", "merriami", "leucogaster",
"leucogaster", "megalotis", "merriami", "merriami", "albigula",
"merriami", "merriami", "albigula", "merriami", "merriami", "torridus",
"ordii", "albigula", "merriami", "merriami", "torridus", "albigula",
"megalotis", "albigula", "merriami", "eremicus", "albigula",
"albigula", "spectabilis", "eremicus", "ordii", "penicillatus",
"penicillatus", "albigula", "eremicus", "merriami", "penicillatus",
"spilosoma", "leucogaster", "ordii", "spectabilis", "albigula",
"leucogaster", "merriami", "merriami", "merriami", "leucogaster",
"megalotis", "leucogaster", "spilosoma", "spilosoma", "ordii",
"eremicus", "merriami", "torridus", "albigula", "penicillatus",
"spilosoma", "torridus", "penicillatus", "merriami", "albigula",
"torridus", "spectabilis", "merriami", "merriami", "merriami",
"merriami", "merriami", "torridus", "torridus", "flavus", "albigula",
"eremicus", "torridus", "albigula", "albigula", "megalotis",
"torridus", "torridus", "merriami", "eremicus", "merriami", "leucogaster",
"merriami", "penicillatus", "merriami", "albigula", "hispidus",
"albigula", "merriami", "megalotis", "merriami", "merriami",
"torridus", "megalotis", "merriami", "merriami", "merriami",
"ordii", "merriami", "leucogaster", "harrisi", "merriami", "albigula",
"merriami", "merriami", "merriami", "albigula", "hispidus", "merriami",
"leucogaster", "albigula", "ordii", "merriami", "ordii", "merriami",
"leucogaster", "albigula", "merriami", "ordii", "merriami", "merriami",
"merriami", "albigula", "merriami", "albigula", "megalotis",
"merriami", "merriami", "merriami", "flavus", "ordii", "leucogaster",
"merriami", "merriami", "leucogaster", "merriami", "merriami",
"merriami", "merriami", "megalotis", "ordii", "torridus", "spectabilis",
"albigula", "penicillatus", "merriami", "merriami", "torridus",
"merriami", "merriami", "merriami", "albigula", "merriami", "penicillatus",
"megalotis", "merriami", "merriami", "torridus", "torridus",
"merriami", "merriami", "albigula", "torridus", "eremicus", "eremicus",
"ordii", "spectabilis", "ordii", "penicillatus", "merriami",
"leucogaster", "merriami", "merriami", "spilosoma", "merriami",
"albigula", "ordii", "ordii", "hispidus", "merriami", "ordii",
"merriami", "merriami", "spilosoma", "merriami", "harrisi", "merriami",
"merriami", "merriami", "megalotis", "ordii", "merriami", "ordii",
"merriami", "merriami", "merriami", "merriami", "merriami", "leucogaster",
"merriami", "leucogaster", "spilosoma", "merriami", "merriami",
"merriami", "merriami", "albigula", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "leucogaster", "spectabilis",
"merriami", "leucogaster", "merriami", "merriami", "merriami",
"merriami", "ordii", "merriami", "penicillatus", "leucogaster",
"megalotis", "merriami", "megalotis", "merriami", "merriami",
"merriami", "hispidus", "merriami", "leucogaster", "merriami",
"merriami", "merriami", "merriami", "merriami", "ordii", "merriami",
"torridus", "merriami", "torridus", "leucogaster", "albigula",
"ordii", "megalotis", "spectabilis", "torridus", "flavus", "hispidus",
"ordii", "albigula", "torridus", "merriami", "merriami", "merriami",
"merriami", "merriami", "leucogaster", "merriami", "leucogaster",
"merriami", "spectabilis", "ordii", "merriami", "ordii", "leucogaster",
"merriami", "merriami", "merriami", "ordii", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "leucogaster", "ordii", "ordii",
"ordii", "merriami", "ordii", "merriami", "merriami", "hispidus",
"merriami", "merriami", "merriami", "merriami", "ordii", "leucogaster",
"merriami", "leucogaster", "merriami", "leucogaster", "merriami",
"merriami", "merriami", "albigula", "leucogaster", "merriami",
"leucogaster", "merriami", "merriami", "megalotis", "merriami",
"merriami", "leucogaster", "merriami", "leucogaster", "ordii",
"merriami", "merriami", "ordii", "merriami", "merriami", "merriami",
"merriami", "leucogaster", "ordii", "merriami", "merriami", "hispidus",
"merriami", "megalotis", "merriami", "merriami", "megalotis",
"merriami", "merriami", "ordii", "ordii", "merriami", "merriami",
"ordii", "megalotis", "leucogaster", "megalotis", "leucogaster",
"torridus", "merriami", "merriami", "ordii", "merriami", "ordii",
"ordii", "ordii", "merriami", "spectabilis", "merriami", "merriami",
"merriami", "merriami", "torridus", "merriami", "merriami", "torridus",
"merriami", "merriami", "ordii", "merriami", "torridus", "maniculatus",
"ordii", "merriami", "eremicus", "ordii", "merriami", "eremicus",
"merriami", "torridus", "merriami", "merriami", "ordii", "merriami",
"merriami", "merriami", "torridus", "megalotis", "torridus",
"ordii", "ordii", "megalotis", "ordii", "merriami", "merriami",
"merriami", "megalotis", "merriami", "eremicus", "megalotis",
"merriami", "merriami", "ordii", "merriami", "merriami", "leucogaster",
"torridus", "torridus", "leucogaster", "maniculatus", "ordii",
"merriami", "ordii", "merriami", "ordii", "merriami", "leucogaster",
"merriami", "merriami", "ordii", "megalotis", "ordii", "merriami",
"ordii", "merriami", "merriami", "merriami", "merriami", "merriami",
"maniculatus", "torridus", "merriami", "merriami", "leucogaster",
"ordii", "leucogaster", "ordii", "merriami", "merriami", "merriami",
"torridus", "leucogaster", "ordii", "merriami", "torridus", "ordii",
"merriami", "merriami", "ordii", "megalotis", "merriami", "merriami",
"megalotis", "torridus", "merriami", "maniculatus", "harrisi",
"merriami", "eremicus", "merriami", "ordii", "merriami", "merriami",
"merriami", "merriami", "megalotis", "merriami", "merriami",
"ordii", "merriami", "merriami", "merriami", "merriami", "merriami",
"merriami", "ordii", "harrisi", "eremicus", "merriami", "ordii",
"merriami", "merriami", "ordii", "ordii", "ordii", "harrisi",
"spectabilis", "merriami", "merriami", "leucogaster", "merriami",
"merriami", "ordii", "merriami", "merriami", "merriami", "leucogaster",
"merriami", "ordii", "merriami", "ordii", "merriami", "megalotis",
"ordii", "merriami", "spectabilis", "ordii", "ordii", "megalotis",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"ordii", "merriami", "megalotis", "merriami", "megalotis", "merriami",
"leucogaster", "merriami", "merriami", "merriami", "leucogaster",
"eremicus", "leucogaster", "merriami", "ordii", "megalotis",
"merriami", "harrisi", "merriami", "ordii", "ordii", "merriami",
"ordii", "merriami", "leucogaster", "merriami", "megalotis",
"megalotis", "merriami", "merriami", "leucogaster", "merriami",
"merriami", "merriami", "ordii", "merriami", "merriami", "ordii",
"leucogaster", "flavus", "ordii", "eremicus", "merriami", "leucogaster",
"megalotis", "ordii", "ordii", "merriami", "merriami", "ordii",
"merriami", "merriami", "eremicus", "ordii", "merriami", "merriami",
"merriami", "spectabilis", "merriami", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "leucogaster",
"albigula", "merriami", "ordii", "merriami", "leucogaster", "spectabilis",
"merriami", "merriami", "eremicus", "megalotis", "merriami",
"ordii", "merriami", "merriami", "merriami", "merriami", "maniculatus",
"merriami", "torridus", "ordii", "merriami", "ordii", "ordii",
"leucogaster", "ordii", "merriami", "merriami", "eremicus", "megalotis",
"merriami", "merriami", "leucogaster", "torridus", "ordii", "megalotis",
"merriami", "merriami", "merriami", "leucogaster", "leucogaster",
"merriami", "merriami", "ordii", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "eremicus", "merriami", "merriami",
"leucogaster", "leucogaster", "leucogaster", "merriami", "merriami",
"leucogaster", "leucogaster", "merriami", "torridus", "merriami",
"maniculatus", "torridus", "ordii", "merriami", "ordii", "leucogaster",
"merriami", "merriami", "merriami", "merriami", "merriami", "ordii",
"merriami", "merriami", "megalotis", "leucogaster", "merriami",
"ordii", "torridus", "ordii", "merriami", "torridus", "maniculatus",
"ordii", "ordii", "spilosoma", "megalotis", "merriami", "merriami",
"eremicus", "merriami", "albigula", "ordii", "eremicus", "spectabilis",
"ordii", "maniculatus", "leucogaster", "merriami", "merriami",
"ordii", "merriami", "merriami", "eremicus", "leucogaster", "spectabilis",
"merriami", "maniculatus", "ordii", "ordii", "ordii", "spectabilis",
"spectabilis", "merriami", "leucogaster", "merriami", "merriami",
"merriami", "merriami", "megalotis", "merriami", "merriami",
"merriami", "merriami", "leucogaster", "megalotis", "ordii",
"merriami", "merriami", "ordii", "merriami", "merriami", "leucogaster",
"ordii", "merriami", "ordii", "merriami", "merriami", "leucogaster",
"megalotis", "merriami", "leucogaster", "merriami", "merriami",
"merriami", "ordii", "ordii", "spectabilis", "merriami", "ordii",
"merriami", "leucogaster", "merriami", "merriami", "ordii", "merriami",
"merriami", "merriami", "merriami", "harrisi", "merriami", "ordii",
"spilosoma", "merriami", "spectabilis", "merriami", "ordii",
"merriami", "merriami", "penicillatus", "merriami", "merriami",
"merriami", "spectabilis", "ordii", "merriami", "merriami", "merriami",
"ordii", "albigula", "merriami", "leucogaster", "penicillatus",
"merriami", "merriami", "merriami", "merriami", "maniculatus",
"maniculatus", "merriami", "merriami", "ordii", "eremicus", "maniculatus",
"merriami", "leucogaster", "merriami", "merriami", "merriami",
"ordii", "torridus", "merriami", "merriami", "merriami", "spectabilis",
"torridus", "merriami", "merriami", "merriami", "merriami", "merriami",
"ordii", "merriami", "leucogaster", "merriami", "ordii", "merriami",
"merriami", "ordii", "merriami", "ordii", "merriami", "eremicus",
"merriami", "ordii", "leucogaster", "maniculatus", "merriami",
"merriami", "merriami", "merriami", "ordii", "merriami", "ordii",
"merriami", "leucogaster", "merriami", "spilosoma", "leucogaster",
"merriami", "merriami", "megalotis", "spilosoma", "merriami",
"merriami", "ordii", "merriami", "leucogaster", "megalotis",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"merriami", "ordii", "eremicus", "merriami", "spectabilis", "merriami",
"leucogaster", "merriami", "leucogaster", "merriami", "penicillatus",
"ordii", "ordii", "ordii", "ordii", "ordii", "merriami", "ordii",
"megalotis", "spectabilis", "ordii", "merriami", "spectabilis",
"leucogaster", "penicillatus", "merriami", "merriami", "merriami",
"merriami", "ordii", "ordii", "ordii", "merriami", "albigula",
"maniculatus", "merriami", "merriami", "leucogaster", "ordii",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "leucogaster", "penicillatus", "leucogaster",
"spectabilis", "spectabilis", "merriami", "ordii", "merriami",
"merriami", "merriami", "ordii", "maniculatus", "leucogaster",
"ordii", "ordii", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "penicillatus", "spectabilis", "merriami", "merriami",
"ordii", "merriami", "spectabilis", "merriami", "merriami", "ordii",
"merriami", "merriami", "merriami", "ordii", "torridus", "merriami",
"torridus", "merriami", "ordii", "megalotis", "merriami", "ordii",
"merriami", "merriami", "merriami", "merriami", "ordii", "merriami",
"merriami", "merriami", "merriami", "torridus", "merriami", "merriami",
"merriami", "merriami", "merriami", "torridus", "ordii", "merriami",
"merriami", "merriami", "ordii", "spectabilis", "merriami", "merriami",
"merriami", "merriami", "merriami", "eremicus", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "ordii", "leucogaster",
"merriami", "albigula", "merriami", "merriami", "spilosoma",
"eremicus", "torridus", "megalotis", "ordii", "albigula", "leucogaster",
"merriami", "eremicus", "ordii", "maniculatus", "merriami", "merriami",
"merriami", "merriami", "ordii", "megalotis", "merriami", "merriami",
"ordii", "ordii", "penicillatus", "torridus", "merriami", "ordii",
"albigula", "merriami", "merriami", "merriami", "merriami", "merriami",
"merriami", "penicillatus", "ordii", "spilosoma", "merriami",
"leucogaster", "ordii", "spilosoma", "megalotis", "merriami",
"merriami", "megalotis", "spectabilis", "merriami", "merriami",
"spectabilis", "spilosoma", "spectabilis", "ordii", "merriami",
"merriami", "spectabilis", "penicillatus", "merriami", "leucogaster",
"merriami", "merriami", "torridus", "megalotis", "spectabilis",
"spectabilis", "penicillatus", "merriami", "spectabilis", "ordii",
"merriami", "merriami", "megalotis", "merriami", "harrisi", "merriami",
"eremicus", "megalotis", "albigula", "megalotis", "ordii", "merriami",
"ordii", "merriami", "merriami", "merriami", "merriami", "merriami",
"albigula", "merriami", "megalotis", "merriami", "merriami",
"merriami", "merriami", "ordii", "merriami", "ordii", "ordii",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "ordii", "merriami", "ordii", "merriami", "spectabilis",
"spectabilis", "merriami", "megalotis", "penicillatus", "merriami",
"ordii", "harrisi", "leucogaster", "merriami", "megalotis", "merriami",
"spectabilis", "merriami", "megalotis", "merriami", "spectabilis",
"leucogaster", "harrisi", "penicillatus", "megalotis", "penicillatus",
"merriami", "spectabilis", "ordii", "spectabilis", "merriami",
"merriami", "ordii", "spectabilis", "merriami", "spectabilis",
"merriami", "merriami", "megalotis", "spectabilis", "merriami",
"ordii", "spectabilis", "spectabilis", "ordii", "merriami", "ordii",
"merriami", "merriami", "ordii", "albigula", "albigula", "ordii",
"megalotis", "merriami", "merriami", "leucogaster", "merriami",
"merriami", "maniculatus", "torridus", "merriami", "ordii", "merriami",
"merriami", "eremicus", "merriami", "merriami", "megalotis",
"ordii", "torridus", "merriami", "torridus", "merriami", "ordii",
"merriami", "leucogaster", "merriami", "merriami", "merriami",
"merriami", "merriami", "ordii", "leucogaster", "merriami", "albigula",
"megalotis", "albigula", "merriami", "merriami", "penicillatus",
"spectabilis", "ordii", "ordii", "merriami", "spectabilis", "merriami",
"eremicus", "albigula", "ordii", "penicillatus", "merriami",
"spectabilis", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "ordii", "merriami", "merriami", "spectabilis", "merriami",
"spectabilis", "spectabilis", "albigula", "merriami", "merriami",
"merriami", "spilosoma", "merriami", "merriami", "ordii", "ordii",
"penicillatus", "albigula", "merriami", "spectabilis", "spectabilis",
"merriami", "merriami", "merriami", "merriami", "ordii", "spectabilis",
"albigula", "merriami", "albigula", "merriami", "torridus", "merriami",
"merriami", "merriami", "merriami", "torridus", "merriami", "merriami",
"merriami", "merriami", "megalotis", "leucogaster", "merriami",
"merriami", "merriami", "albigula", "penicillatus", "leucogaster",
"merriami", "merriami", "leucogaster", "ordii", "ordii", "ordii",
"albigula", "albigula", "merriami", "ordii", "merriami", "albigula",
"merriami", "merriami", "ordii", "merriami", "penicillatus",
"merriami", "merriami", "albigula", "torridus", "spilosoma",
"albigula", "ordii", "albigula", "ordii", "ordii", "merriami",
"albigula", "penicillatus", "ordii", "merriami", "ordii", "merriami",
"merriami", "merriami", "ordii", "penicillatus", "torridus",
"albigula", "merriami", "merriami", "harrisi", "ordii", "merriami",
"ordii", "spectabilis", "spectabilis", "spectabilis", "spectabilis",
"merriami", "merriami", "merriami", "ordii", "ordii", "merriami",
"ordii", "merriami", "merriami", "merriami", "penicillatus",
"ordii", "penicillatus", "spectabilis", "merriami", "spectabilis",
"torridus", "merriami", "albigula", "merriami", "merriami", "merriami",
"torridus", "merriami", "penicillatus", "merriami", "merriami",
"leucogaster", "merriami", "ordii", "merriami", "merriami", "penicillatus",
"merriami", "penicillatus", "leucogaster", "ordii", "merriami",
"albigula", "merriami", "merriami", "merriami", "merriami", "torridus",
"ordii", "merriami", "merriami", "torridus", "merriami", "merriami",
"merriami", "penicillatus", "merriami", "merriami", "merriami",
"hispidus", "merriami", "merriami", "albigula", "merriami", "ordii",
"merriami", "merriami", "ordii", "merriami", "leucogaster", "penicillatus",
"merriami", "spilosoma", "spectabilis", "megalotis", "albigula",
"eremicus", "merriami", "albigula", "merriami", "ordii", "ordii",
"merriami", "merriami", "ordii", "leucogaster", "spectabilis",
"eremicus", "penicillatus", "penicillatus", "torridus", "ordii",
"spectabilis", "merriami", "torridus", "merriami", "ordii", "merriami",
"eremicus", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "merriami", "eremicus", "ordii",
"spectabilis", "merriami", "merriami", "merriami", "ordii", "merriami",
"merriami", "spectabilis", "megalotis", "merriami", "merriami",
"penicillatus", "torridus", "leucogaster", "ordii", "merriami",
"torridus", "penicillatus", "spectabilis", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "eremicus", "leucogaster",
"torridus", "merriami", "ordii", "eremicus", "eremicus", "merriami",
"merriami", "albigula", "ordii", "penicillatus", "merriami",
"merriami", "penicillatus", "merriami", "merriami", "merriami",
"leucogaster", "leucogaster", "ordii", "maniculatus", "megalotis",
"merriami", "torridus", "merriami", "torridus", "merriami", "albigula",
"ordii", "merriami", "merriami", "merriami", "merriami", "torridus",
"merriami", "leucogaster", "merriami", "ordii", "leucogaster",
"leucogaster", "merriami", "megalotis", "merriami", "merriami",
"ordii", "merriami", "spectabilis", "albigula", "eremicus", "spectabilis",
"ordii", "merriami", "megalotis", "merriami", "merriami", "merriami",
"ordii", "merriami", "eremicus", "ordii", "ordii", "merriami",
"merriami", "spectabilis", "merriami", "ordii", "merriami", "merriami",
"ordii", "eremicus", "ordii", "merriami", "merriami", "leucogaster",
"eremicus", "spectabilis", "ordii", "ordii", "merriami", "spectabilis",
"torridus", "spectabilis", "merriami", "merriami", "spectabilis",
"albigula", "ordii", "merriami", "eremicus", "leucogaster", "spectabilis",
"merriami", "merriami", "torridus", "spectabilis", "leucogaster",
"merriami", "spilosoma", "leucogaster", "merriami", "merriami",
"spectabilis", "ordii", "leucogaster", "merriami", "merriami",
"merriami", "leucogaster", "torridus", "spectabilis", "merriami",
"albigula", "merriami", "ordii", "merriami", "torridus", "merriami",
"leucogaster", "torridus", "merriami", "eremicus", "eremicus",
"spectabilis", "merriami", "albigula", "torridus", "eremicus",
"merriami", "megalotis", "ordii", "merriami", "merriami", "merriami",
"ordii", "merriami", "leucogaster", "merriami", "merriami", "spilosoma",
"merriami", "megalotis", "torridus", "merriami", "merriami",
"merriami", "merriami", "merriami", "ordii", "merriami", "torridus",
"merriami", "ordii", "albigula", "merriami", "merriami", "ordii",
"merriami", "merriami", "spectabilis", "merriami", "ordii", "merriami",
"merriami", "merriami", "hispidus", "spilosoma", "albigula",
"ordii", "torridus", "merriami", "merriami", "albigula", "merriami",
"penicillatus", "merriami", "merriami", "merriami", "eremicus",
"merriami", "leucogaster", "merriami", "eremicus", "merriami",
"merriami", "ordii", "torridus", "ordii", "merriami", "ordii",
"spectabilis", "merriami", "torridus", "merriami", "ordii", "spectabilis",
"spectabilis", "ordii", "harrisi", "merriami", "megalotis", "merriami",
"spectabilis", "merriami", "merriami", "merriami", "spectabilis",
"leucogaster", "merriami", "merriami", "merriami", "merriami",
"spectabilis", "merriami", "megalotis", "ordii", "merriami",
"eremicus", "megalotis", "merriami", "merriami", "merriami",
"ordii", "megalotis", "leucogaster", "merriami", "ordii", "merriami",
"spectabilis", "merriami", "eremicus", "spectabilis", "merriami",
"leucogaster", "merriami", "megalotis", "leucogaster", "torridus",
"spectabilis", "torridus", "merriami", "eremicus", "eremicus",
"merriami", "merriami", "ordii", "ordii", "merriami", "eremicus",
"leucogaster", "merriami", "spectabilis", "merriami", "eremicus",
"merriami", "merriami", "merriami", "merriami", "harrisi", "leucogaster",
"merriami", "merriami", "megalotis", "megalotis", "torridus",
"merriami", "merriami", "merriami", "merriami", "megalotis",
"ordii", "torridus", "eremicus", "torridus", "merriami", "ordii",
"merriami", "torridus", "merriami", "ordii", "megalotis", "merriami",
"leucogaster", "merriami", "torridus", "merriami", "merriami",
"ordii", "merriami", "eremicus", "ordii", "albigula", "torridus",
"megalotis", "megalotis", "leucogaster", "merriami", "hispidus",
"megalotis", "merriami", "merriami", "megalotis", "torridus",
"merriami", "merriami", "leucogaster", "merriami", "albigula",
"merriami", "merriami", "spectabilis", "merriami", "merriami",
"harrisi", "merriami", "megalotis", "torridus", "merriami", "merriami",
"ordii", "eremicus", "ordii", "merriami", "megalotis", "merriami",
"spectabilis", "merriami", "ordii", "megalotis", "merriami",
"albigula", "merriami", "megalotis", "spectabilis", "spectabilis",
"ordii", "megalotis", "spectabilis", "ordii", "merriami", "merriami",
"merriami", "merriami", "merriami", "ordii", "merriami", "ordii",
"merriami", "ordii", "eremicus", "merriami", "merriami", "leucogaster",
"merriami", "spectabilis", "merriami", "leucogaster", "merriami",
"eremicus", "penicillatus", "ordii", "merriami", "eremicus",
"spectabilis", "ordii", "merriami", "merriami", "spectabilis",
"harrisi", "merriami", "albigula", "megalotis", "leucogaster",
"merriami", "merriami", "ordii", "harrisi", "merriami", "merriami",
"eremicus", "merriami", "spectabilis", "ordii", "megalotis",
"megalotis", "albigula", "merriami", "merriami", "megalotis",
"merriami", "megalotis", "merriami", "torridus", "spectabilis",
"ordii", "merriami", "ordii", "leucogaster", "leucogaster", "eremicus",
"merriami", "merriami", "ordii", "leucogaster", "merriami", "merriami",
"merriami", "ordii", "ordii", "merriami", "leucogaster", "merriami",
"merriami", "torridus", "ordii", "leucogaster", "ordii", "merriami",
"albigula", "spilosoma", "torridus", "eremicus", "merriami",
"merriami", "merriami", "megalotis", "merriami", "merriami",
"merriami", "ordii", "merriami", "ordii", "eremicus", "hispidus",
"albigula", "spectabilis", "megalotis", "merriami", "penicillatus",
"ordii", "spectabilis", "merriami", "ordii", "spectabilis", "merriami",
"merriami", "penicillatus", "spectabilis", "ordii", "merriami",
"merriami", "merriami", "megalotis", "spectabilis", "albigula",
"spectabilis", "merriami", "merriami", "merriami", "merriami",
"ordii", "megalotis", "megalotis", "leucogaster", "spectabilis",
"spectabilis", "megalotis", "eremicus", "merriami", "ordii",
"eremicus", "merriami", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "megalotis", "merriami", "merriami",
"merriami", "albigula", "merriami", "megalotis", "spectabilis",
"spilosoma", "merriami", "merriami", "eremicus", "eremicus",
"merriami", "megalotis", "ordii", "merriami", "merriami", "ordii",
"maniculatus", "merriami", "spectabilis", "merriami", "merriami",
"megalotis", "megalotis", "merriami", "ordii", "merriami", "albigula",
"merriami", "eremicus", "spilosoma", "merriami", "merriami",
"leucogaster", "merriami", "merriami", "ordii", "leucogaster",
"albigula", "merriami", "albigula", "merriami", "merriami", "merriami",
"eremicus", "spectabilis", "penicillatus", "merriami", "merriami",
"spectabilis", "spectabilis", "ordii", "merriami", "spectabilis",
"maniculatus", "ordii", "merriami", "merriami", "harrisi", "megalotis",
"merriami", "merriami", "leucogaster", "spectabilis", "albigula",
"leucogaster", "ordii", "albigula", "spectabilis", "spectabilis",
"merriami", "merriami", "merriami", "merriami", "merriami", "leucogaster",
"ordii", "merriami", "merriami", "spectabilis", "merriami", "sp.",
"megalotis", "spectabilis", "merriami", "merriami", "spectabilis",
"ordii", "spectabilis", "merriami", "merriami", "merriami", "penicillatus",
"torridus", "ordii", "spectabilis", "ordii", "merriami", "merriami",
"merriami", "merriami", "merriami", "penicillatus", "merriami",
"merriami", "albigula", "merriami", "merriami", "merriami", "eremicus",
"albigula", "eremicus", "merriami", "merriami", "spectabilis",
"megalotis", "albigula", "maniculatus", "ordii", "merriami",
"torridus", "maniculatus", "merriami", "merriami", "merriami",
"merriami", "merriami", "megalotis", "ordii", "megalotis", "torridus",
"penicillatus", "merriami", "maniculatus", "megalotis", "merriami",
"leucogaster", "ordii", "ordii", "merriami", "leucogaster", "albigula",
"ordii", "eremicus", "albigula", "merriami", "merriami", "merriami",
"merriami", "eremicus", "megalotis", "eremicus", "merriami",
"eremicus", "maniculatus", "spectabilis", "merriami", "megalotis",
"merriami", "spectabilis", "spectabilis", "albigula", "megalotis",
"albigula", "ordii", "albigula", "spectabilis", "albigula", "merriami",
"merriami", "merriami", "merriami", "spectabilis", "ordii", "harrisi",
"spectabilis", "merriami", "merriami", "merriami", "penicillatus",
"maniculatus", "merriami", "merriami", "spectabilis", "spectabilis",
"eremicus", "spectabilis", "merriami", "torridus", "spectabilis",
"ordii", "merriami", "merriami", "harrisi", "spectabilis", "ordii",
"albigula", "merriami", "merriami", "torridus", "merriami", "merriami",
"merriami", "megalotis", "eremicus", "merriami", "megalotis",
"megalotis", "albigula", "merriami", "merriami", "merriami",
"maniculatus", "merriami", "albigula", "spectabilis", "merriami",
"merriami", "torridus", "merriami", "maniculatus", "ordii", "ordii",
"merriami", "torridus", "albigula", "leucogaster", "merriami",
"merriami", "ordii", "merriami", "albigula", "albigula", "eremicus",
"torridus", "merriami", "maniculatus", "merriami", "merriami",
"merriami", "albigula", "maniculatus", "merriami", "ordii", "merriami",
"merriami", "albigula", "merriami", "merriami", "merriami", "albigula",
"penicillatus", "ordii", "ordii", "penicillatus", "merriami",
"albigula", "ordii", "spectabilis", "merriami", "merriami", "ordii",
"merriami", "megalotis", "merriami", "penicillatus", "merriami",
"ordii", "merriami", "eremicus", "harrisi", "spectabilis", "merriami",
"merriami", "spectabilis", "albigula", "spectabilis", "merriami",
"merriami", "leucogaster", "megalotis", "merriami", "merriami",
"megalotis", "merriami", "harrisi", "ordii", "penicillatus",
"merriami", "torridus", "harrisi", "ordii", "albigula", "merriami",
"merriami", "merriami", "harrisi", "penicillatus", "merriami",
"merriami", "ordii", "merriami", "merriami", "spilosoma", "megalotis",
"ordii", "megalotis", "spectabilis", "eremicus", "ordii", "maniculatus",
"merriami", "merriami", "harrisi", "albigula", "albigula", "merriami",
"merriami", "merriami", "spilosoma", "merriami", "merriami",
"merriami", "ordii", "flavus", "ordii", "albigula", "merriami",
"torridus", "merriami", "maniculatus", "megalotis", "albigula",
"spilosoma", "merriami", "merriami", "torridus", "penicillatus",
"ordii", "merriami", "merriami", "maniculatus", "spectabilis",
"maniculatus", "merriami", "merriami", "merriami", "merriami",
"megalotis", "ordii", "merriami", "merriami", "ordii", "ordii",
"albigula", "merriami", "ordii", "spectabilis", "merriami", "merriami",
"merriami", "megalotis", "merriami", "megalotis", "megalotis",
"merriami", "ordii", "albigula", "leucogaster", "merriami", "merriami",
"spectabilis", "albigula", "merriami", "spectabilis", "penicillatus",
"leucogaster", "merriami", "merriami", "spectabilis", "merriami",
"harrisi", "eremicus", "merriami", "merriami", "merriami", "megalotis",
"torridus", "merriami", "merriami", "penicillatus", "penicillatus",
"merriami", "ordii", "leucogaster", "merriami", "merriami", "spectabilis",
"harrisi", "merriami", "ordii", "merriami", "merriami", "merriami",
"penicillatus", "spectabilis", "albigula", "albigula", "ordii",
"maniculatus", "merriami", "merriami", "merriami", "merriami",
"merriami", "merriami", "albigula", "merriami", "spectabilis",
"merriami", "merriami", "leucogaster", "ordii", "merriami", "albigula",
"ordii", "merriami", "harrisi", "harrisi", "merriami", "penicillatus",
"ordii", "merriami", "merriami", "spectabilis", "merriami", "spectabilis",
"penicillatus", "merriami", "leucogaster", "merriami", "merriami",
"penicillatus", "spectabilis", "spectabilis", "merriami", "harrisi",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "merriami", "merriami", "merriami", "merriami", "merriami",
"harrisi", "merriami", "ordii", "merriami", "merriami", "merriami",
"leucogaster", "merriami", "merriami", "penicillatus", "torridus",
"merriami", "merriami", "merriami", "flavus", "merriami", "ordii",
"merriami", "merriami", "torridus", "merriami", "merriami", "ordii",
"leucogaster", "ordii", "merriami", "penicillatus", "albigula",
"merriami", "spilosoma", "merriami", "merriami", "harrisi", "merriami",
"merriami", "ordii", "merriami", "albigula", "merriami", "merriami",
"leucogaster", "spectabilis", "ordii", "merriami", "albigula",
"harrisi", "penicillatus", "torridus", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"leucogaster", "spilosoma", "merriami", "spilosoma", "merriami",
"penicillatus", "merriami", "spectabilis", "spectabilis", "merriami",
"ordii", "harrisi", "spectabilis", "merriami", "merriami", "spectabilis",
"merriami", "albigula", "ordii", "albigula", "merriami", "penicillatus",
"merriami", "merriami", "merriami", "merriami", "albigula", "torridus",
"maniculatus", "merriami", "spilosoma", "merriami", "merriami",
"merriami", "leucogaster", "hispidus", "merriami", "merriami",
"merriami", "spilosoma", "maniculatus", "ordii", "merriami",
"ordii", "spilosoma", "merriami", "merriami", "albigula", "merriami",
"merriami", "merriami", "merriami", "merriami", "albigula", "merriami",
"torridus", "ordii", "merriami", "merriami", "penicillatus",
"spectabilis", "spectabilis", "ordii", "merriami", "merriami",
"ordii", "albigula", "merriami", "spectabilis", "leucogaster",
"spectabilis", "merriami", "albigula", "leucogaster", "merriami",
"torridus", "merriami", "merriami", "ordii", "spectabilis", "merriami",
"eremicus", "merriami", "merriami", "merriami", "merriami", "eremicus",
"leucogaster", "albigula", "merriami", "merriami", "albigula",
"spectabilis", "merriami", "merriami", "merriami", "leucogaster",
"merriami", "merriami", "leucogaster", "merriami", "merriami",
"merriami", "maniculatus", "merriami", "ordii", "merriami", "ordii",
"merriami", "leucogaster", "megalotis", "megalotis", "leucogaster",
"ordii", "merriami", "maniculatus", "merriami", "merriami", "merriami",
"merriami", "merriami", "merriami", "torridus", "merriami", "merriami",
"leucogaster", "merriami", "merriami", "ordii", "ordii", "merriami",
"merriami", "albigula", "merriami", "torridus", "leucogaster",
"merriami", "ordii", "leucogaster", "ordii", "merriami", "maniculatus",
"merriami", "merriami", "merriami", "spectabilis", "ordii", "merriami",
"leucogaster", "ordii", "leucogaster", "ordii", "ordii", "spectabilis",
"spectabilis", "spectabilis", "spectabilis", "merriami", "merriami",
"leucogaster", "maniculatus", "harrisi", "merriami", "merriami",
"merriami", "merriami", "merriami", "merriami", "maniculatus",
"spectabilis", "merriami", "merriami", "megalotis", "maniculatus",
"spectabilis", "merriami", "merriami", "maniculatus", "ordii",
"merriami", "ordii", "merriami", "megalotis", "leucogaster",
"ordii", "spectabilis", "spectabilis", "megalotis", "merriami",
"merriami", "merriami", "albigula", "ordii", "merriami", "maniculatus",
"ordii", "ordii", "merriami", "merriami", "ordii", "torridus",
"merriami", "merriami", "merriami", "merriami", "merriami", "ordii",
"merriami", "eremicus", "merriami", "megalotis", "ordii", "megalotis",
"leucogaster", "albigula", "merriami", "merriami", "ordii", "ordii",
"ordii", "merriami", "maniculatus", "merriami", "megalotis",
"ordii", "merriami", "merriami", "maniculatus", "merriami", "ordii",
"merriami", "ordii", "merriami", "torridus", "albigula", "albigula",
"merriami", "harrisi", "leucogaster", "ordii", "merriami", "merriami",
"megalotis", "leucogaster", "ordii", "merriami", "ordii", "maniculatus",
"merriami", "merriami", "megalotis", "merriami", "albigula",
"maniculatus", "eremicus", "spectabilis", "ordii", "ordii", "ordii",
"spectabilis", "spectabilis", "merriami", "merriami", "spectabilis",
"merriami", "spectabilis", "merriami", "merriami", "spectabilis",
"merriami", "merriami", "merriami", "merriami", "ordii", "maniculatus",
"merriami", "megalotis", "megalotis", "ordii", "merriami", "ordii",
"spectabilis", "maniculatus", "ordii", "merriami", "megalotis",
"merriami", "megalotis", "ordii", "spectabilis", "merriami",
"maniculatus", "merriami", "leucogaster", "maniculatus", "merriami",
"eremicus", "ordii", "merriami", "megalotis", "merriami", "megalotis",
"merriami", "maniculatus", "leucogaster", "merriami", "eremicus",
"megalotis", "merriami", "megalotis", "leucogaster", "merriami",
"merriami", "torridus", "megalotis", "leucogaster", "merriami",
"albigula", "merriami", "merriami", "eremicus", "megalotis",
"megalotis", "megalotis", "megalotis", "megalotis", "megalotis",
"merriami", "megalotis", "maniculatus", "ordii", "albigula",
"ordii", "merriami", "maniculatus", "merriami", "ordii", "ordii",
"merriami", "merriami", "leucogaster", "megalotis", "albigula",
"albigula", "merriami", "leucogaster", "megalotis", "merriami",
"megalotis", "ordii", "maniculatus", "ordii", "merriami", "merriami",
"ordii", "maniculatus", "megalotis", "albigula", "ordii", "merriami",
"merriami", "megalotis", "megalotis", "megalotis", "merriami",
"merriami", "leucogaster", "torridus", "megalotis", "ordii",
"ordii", "merriami", "ordii", "torridus", "merriami", "merriami",
"maniculatus", "eremicus", "merriami", "merriami", "spectabilis",
"merriami", "leucogaster", "spectabilis", "merriami", "leucogaster",
"ordii", "harrisi", "megalotis", "megalotis", "merriami", "megalotis",
"spectabilis", "ordii", "maniculatus", "ordii", "harrisi", "spectabilis",
"harrisi", "merriami", "spectabilis", "ordii", "merriami", "harrisi",
"harrisi", "merriami", "eremicus", "merriami", "spectabilis",
"spectabilis", "spectabilis", "merriami", "merriami", "eremicus",
"ordii", "merriami", "ordii", "megalotis", "merriami", "merriami",
"ordii", "albigula", "merriami", "albigula", "ordii", "ordii",
"merriami", "spectabilis", "maniculatus", "ordii", "eremicus",
"merriami", "maniculatus", "merriami", "eremicus", "leucogaster",
"maniculatus", "eremicus", "merriami", "maniculatus", "merriami",
"merriami", "merriami", "ordii", "megalotis", "leucogaster",
"ordii", "merriami", "megalotis", "megalotis", "merriami", "megalotis",
"megalotis", "megalotis", "ordii", "megalotis", "megalotis",
"leucogaster", "megalotis", "merriami", "maniculatus", "megalotis",
"maniculatus", "merriami", "megalotis", "merriami", "eremicus",
"ordii", "leucogaster", "leucogaster", "merriami", "leucogaster",
"ordii", "ordii", "merriami", "ordii", "ordii", "megalotis",
"merriami", "merriami", "merriami", "merriami", "ordii", "megalotis",
"megalotis", "merriami", "megalotis", "megalotis", "merriami",
"ordii", "megalotis", "merriami", "albigula", "maniculatus",
"ordii", "ordii", "ordii", "maniculatus", "merriami", "ordii",
"ordii", "albigula", "merriami", "ordii", "merriami", "merriami",
"megalotis", "merriami", "albigula", "merriami", "megalotis",
"ordii", "merriami", "merriami", "spectabilis", "ordii", "merriami",
"merriami", "ordii", "megalotis", "ordii", "megalotis", "spectabilis",
"megalotis", "merriami", "megalotis", "merriami", "spectabilis",
"spectabilis", "maniculatus", "ordii", "leucogaster", "merriami",
"ordii", "eremicus", "merriami", "leucogaster", "spectabilis",
"megalotis", "leucogaster", "merriami", "merriami", "ordii",
"ordii", "spectabilis", "maniculatus", "merriami", "megalotis",
"spectabilis", "ordii", "merriami", "merriami", "megalotis",
"harrisi", "spectabilis", "merriami", "megalotis", "albigula",
"merriami", "merriami", "spectabilis", "ordii", "leucogaster",
"spectabilis", "merriami", "megalotis", "megalotis", "maniculatus",
"eremicus", "maniculatus", "ordii", "merriami", "merriami", "albigula",
"eremicus", "ordii", "merriami", "megalotis", "megalotis", "leucogaster",
"megalotis", "ordii", "merriami", "merriami", "megalotis", "megalotis",
"maniculatus", "merriami", "torridus", "merriami", "merriami",
"eremicus", "albigula", "maniculatus", "merriami", "ordii", "spilosoma",
"ordii", "albigula", "ordii", "ordii", "merriami", "megalotis",
"merriami", "torridus", "merriami", "ordii", "ordii", "megalotis",
"merriami", "maniculatus", "merriami", "merriami", "maniculatus",
"ordii", "merriami", "maniculatus", "merriami", "ordii", "ordii",
"torridus", "albigula", "harrisi", "ordii", "maniculatus", "megalotis",
"ordii", "merriami", "albigula", "merriami", "ordii", "eremicus",
"ordii", "merriami", "megalotis", "ordii", "ordii", "megalotis",
"eremicus", "eremicus", "spectabilis", "merriami", "megalotis",
"ordii", "merriami", "ordii", "merriami", "merriami", "merriami",
"merriami", "megalotis", "spectabilis", "megalotis", "ordii",
"ordii", "spectabilis", "merriami", "megalotis", "merriami",
"penicillatus", "ordii", "albigula", "merriami", "megalotis",
"ordii", "leucogaster", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "spectabilis", "ordii", "spilosoma",
"ordii", "megalotis", "ordii", "merriami", "merriami", "merriami",
"eremicus", "leucogaster", "merriami", "ordii", "leucogaster",
"spectabilis", "maniculatus", "maniculatus", "merriami", "albigula",
"spectabilis", "spectabilis", "spectabilis", "spectabilis", "eremicus",
"merriami", "merriami", "eremicus", "eremicus", "maniculatus",
"merriami", "eremicus", "harrisi", "merriami", "maniculatus",
"penicillatus", "spilosoma", "merriami", "merriami", "albigula",
"ordii", "maniculatus", "leucogaster", "ordii", "eremicus", "merriami",
"megalotis", "leucogaster", "leucogaster", "maniculatus", "merriami",
"maniculatus", "eremicus", "albigula", "merriami", "leucogaster",
"eremicus", "ordii", "ordii", "albigula", "megalotis", "ordii",
"penicillatus", "merriami", "merriami", "eremicus", "merriami",
"merriami", "maniculatus", "megalotis", "leucogaster", "ordii",
"eremicus", "eremicus", "eremicus", "ordii", "spilosoma", "albigula",
"merriami", "ordii", "ordii", "merriami", "eremicus", "merriami",
"merriami", "merriami", "ordii", "ordii", "merriami", "merriami",
"ordii", "spilosoma", "ordii", "megalotis", "merriami", "ordii",
"eremicus", "ordii", "ordii", "merriami", "spectabilis", "ordii",
"merriami", "harrisi", "albigula", "ordii", "merriami", "maniculatus",
"albigula", "leucogaster", "eremicus", "merriami", "maniculatus",
"albigula", "merriami", "penicillatus", "harrisi", "eremicus",
"spectabilis", "ordii", "spectabilis", "merriami", "penicillatus",
"spectabilis", "merriami", "spectabilis", "albigula", "spectabilis",
"penicillatus", "ordii", "merriami", "spilosoma", "merriami",
"merriami", "spectabilis", "megalotis", "spectabilis", "ordii",
"albigula", "spectabilis", "ordii", "ordii", "ordii", "albigula",
"eremicus", "spectabilis", "penicillatus", "merriami", "spectabilis",
"maniculatus", "spectabilis", "penicillatus", "maniculatus",
"merriami", "spectabilis", "eremicus", "albigula", "eremicus",
"maniculatus", "eremicus", "merriami", "merriami", "spectabilis",
"merriami", "albigula", "merriami", "eremicus", "merriami", "merriami",
"merriami", "merriami", "eremicus", "leucogaster", "albigula",
"merriami", "maniculatus", "albigula", "maniculatus", "ordii",
"maniculatus", "ordii", "eremicus", "albigula", "ordii", "merriami",
"maniculatus", "megalotis", "albigula", "merriami", "ordii",
"albigula", "maniculatus", "torridus", "ordii", "megalotis",
"maniculatus", "albigula", "merriami", "maniculatus", "harrisi",
"merriami", "merriami", "eremicus", "merriami", "maniculatus",
"megalotis", "leucogaster", "spectabilis", "leucogaster", "spectabilis",
"eremicus", "eremicus", "merriami", "merriami", "maniculatus",
"merriami", "megalotis", "maniculatus", "megalotis", "leucogaster",
"merriami", "ordii", "spectabilis", "ordii", "ordii", "merriami",
"albigula", "merriami", "merriami", "eremicus", "maniculatus",
"spectabilis", "merriami", "ordii", "megalotis", "merriami",
"ordii", "spectabilis", "merriami", "penicillatus", "harrisi",
"albigula", "eremicus", "merriami", "merriami", "leucogaster",
"merriami", "eremicus", "merriami", "spectabilis", "albigula",
"spectabilis", "eremicus", "merriami", "harrisi", "harrisi",
"merriami", "maniculatus", "leucogaster", "merriami", "harrisi",
"megalotis", "ordii", "harrisi", "megalotis", "harrisi", "megalotis",
"merriami", "merriami", "eremicus", "megalotis", "penicillatus",
"merriami", "harrisi", "penicillatus", "merriami", "merriami",
"albigula", "merriami", "ordii", "merriami", "ordii", "maniculatus",
"spilosoma", "eremicus", "ordii", "ordii", "merriami", "ordii",
"leucogaster", "eremicus", "megalotis", "maniculatus", "merriami",
"eremicus", "merriami", "merriami", "merriami", "maniculatus",
"merriami", "harrisi", "spectabilis", "albigula", "spectabilis",
"albigula", "harrisi", "harrisi", "albigula", "harrisi", "maniculatus",
"spectabilis", "leucogaster", "harrisi", "merriami", "merriami",
"megalotis", "ordii", "merriami", "harrisi", "maniculatus", "eremicus",
"merriami", "merriami", "megalotis", "maniculatus", "eremicus",
"merriami", "merriami", "ordii", "megalotis", "leucogaster",
"ordii", "penicillatus", "merriami", "merriami", "eremicus",
"merriami", "merriami", "merriami", "torridus", "eremicus", "megalotis",
"merriami", "torridus", "megalotis", "merriami", "merriami",
"eremicus", "merriami", "ordii", "maniculatus", "merriami", "spectabilis",
"megalotis", "albigula", "spectabilis", "maniculatus", "albigula",
"megalotis", "torridus", "penicillatus", "merriami", "albigula",
"megalotis", "ordii", "merriami", "eremicus", "merriami", "harrisi",
"ordii", "eremicus", "merriami", "spilosoma", "merriami", "ordii",
"merriami", "eremicus", "merriami", "albigula", "merriami", "maniculatus",
"merriami", "megalotis", "ordii", "maniculatus", "merriami",
"harrisi", "spectabilis", "merriami", "maniculatus", "leucogaster",
"maniculatus", "ordii", "penicillatus", "merriami", "torridus",
"merriami", "torridus", "albigula", "leucogaster", "harrisi",
"spectabilis", "merriami", "spectabilis", "penicillatus", "spilosoma",
"merriami", "maniculatus", "megalotis", "merriami", "ordii",
"spectabilis", "merriami", "merriami", "megalotis", "spectabilis",
"megalotis", "megalotis", "spectabilis", "megalotis", "albigula",
"megalotis", "spectabilis", "ordii", "merriami", "maniculatus",
"maniculatus", "albigula", "merriami", "megalotis", "ordii",
"spectabilis", "spectabilis", "leucogaster", "spectabilis", "merriami",
"merriami", "ordii", "merriami", "merriami", "eremicus", "merriami",
"spectabilis", "merriami", "merriami", "merriami", "leucogaster",
"spectabilis", "ordii", "merriami", "merriami", "maniculatus",
"spilosoma", "merriami", "ordii", "albigula", "penicillatus",
"megalotis", "ordii", "megalotis", "megalotis", "albigula", "merriami",
"merriami", "merriami", "ordii", "maniculatus", "megalotis",
"penicillatus", "spilosoma", "penicillatus", "megalotis", "merriami",
"maniculatus", "merriami", "merriami", "merriami", "megalotis",
"maniculatus", "merriami", "merriami", "eremicus", "leucogaster",
"ordii", "albigula", "megalotis", "megalotis", "megalotis", "torridus",
"merriami", "merriami", "merriami", "maniculatus", "ordii", "merriami",
"megalotis", "ordii", "merriami", "ordii", "merriami", "ordii",
"merriami", "merriami", "merriami", "merriami", "merriami", "ordii",
"spectabilis", "ordii", "merriami", "merriami", "megalotis",
"ordii", "merriami", "eremicus", "merriami", "maniculatus", "eremicus",
"merriami", "merriami", "megalotis", "ordii", "leucogaster",
"albigula", "albigula", "merriami", "eremicus", "maniculatus",
"megalotis", "penicillatus", "megalotis", "eremicus", "merriami",
"eremicus", "leucogaster", "eremicus", "merriami", "eremicus",
"albigula", "ordii", "penicillatus", "maniculatus", "merriami",
"megalotis", "albigula", "penicillatus", "megalotis", "eremicus",
"megalotis", "leucogaster", "leucogaster", "merriami", "maniculatus",
"spectabilis", "torridus", "megalotis", "merriami", "eremicus",
"merriami", "spilosoma", "spectabilis", "merriami", "spectabilis",
"merriami", "spectabilis", "ordii", "megalotis", "merriami",
"merriami", "merriami", "megalotis", "spilosoma", "maniculatus",
"merriami", "harrisi", "merriami", "albigula", "albigula", "eremicus",
"merriami", "maniculatus", "megalotis", "spectabilis", "megalotis",
"maniculatus", "hispidus", "eremicus", "merriami", "maniculatus",
"merriami", "merriami", "merriami", "penicillatus", "ordii",
"ordii", "merriami", "merriami", "eremicus", "albigula", "maniculatus",
"ordii", "merriami", "penicillatus", "merriami", "spectabilis",
"albigula", "megalotis", "merriami", "penicillatus", "maniculatus",
"spectabilis", "albigula", "maniculatus", "ordii", "spilosoma",
"leucogaster", "penicillatus", "merriami", "albigula", "merriami",
"merriami", "megalotis", "merriami", "leucogaster", "ordii",
"penicillatus", "harrisi", "albigula", "merriami", "spilosoma",
"eremicus", "merriami", "merriami", "merriami", "ordii", "eremicus",
"merriami", "torridus", "merriami", "maniculatus", "megalotis",
"eremicus", "merriami", "torridus", "merriami", "merriami", "ordii",
"megalotis", "eremicus", "eremicus", "merriami", "merriami",
"merriami", "merriami", "torridus", "megalotis", "spectabilis",
"ordii", "leucogaster", "maniculatus", "merriami", "ordii", "albigula",
"maniculatus", "albigula", "leucogaster", "merriami", "eremicus",
"penicillatus", "megalotis", "albigula", "ordii", "merriami",
"merriami", "albigula", "ordii", "maniculatus", "merriami", "merriami",
"penicillatus", "ordii", "merriami", "merriami", "maniculatus",
"hispidus", "spilosoma", "merriami", "spectabilis", "albigula",
"megalotis", "albigula", "torridus", "leucogaster", "ordii",
"ordii", "harrisi", "merriami", "leucogaster", "ordii", "albigula",
"maniculatus", "penicillatus", "torridus", "ordii", "albigula",
"eremicus", "megalotis", "maniculatus", "spectabilis", "penicillatus",
"merriami", "ordii", "merriami", "merriami", "merriami", "spilosoma",
"eremicus", "spectabilis", "merriami", "maniculatus", "ordii",
"albigula", "torridus", "merriami", "merriami", "merriami", "ordii",
"spectabilis", "megalotis", "albigula", "merriami", "maniculatus",
"merriami", "maniculatus", "merriami", "penicillatus", "eremicus",
"merriami", "eremicus", "eremicus", "maniculatus", "merriami",
"merriami", "megalotis", "leucogaster", "penicillatus", "merriami",
"merriami", "megalotis", "merriami", "eremicus", "merriami",
"ordii", "albigula", "spectabilis", "merriami", "leucogaster",
"spilosoma", "eremicus", "megalotis", "spilosoma", "spectabilis",
"albigula", "harrisi", "penicillatus", "merriami", "maniculatus",
"megalotis", "leucogaster", "ordii", "ordii", "albigula", "ordii",
"merriami", "albigula", "harrisi", "albigula", "penicillatus",
"ordii", "megalotis", "torridus", "merriami", "maniculatus",
"leucogaster", "merriami", "harrisi", "merriami", "albigula",
"maniculatus", "ordii", "merriami", "merriami", "merriami", "merriami",
"torridus", "megalotis", "merriami", "albigula", "harrisi", "merriami",
"merriami", "merriami", "albigula", "ordii", "torridus", "maniculatus",
"merriami", "maniculatus", "ordii", "leucogaster", "albigula",
"spectabilis", "leucogaster", "merriami", "penicillatus", "torridus",
"albigula", "penicillatus", "eremicus", "ordii", "eremicus",
"ordii", "merriami", "merriami", "merriami", "merriami", "harrisi",
"merriami", "torridus", "albigula", "merriami", "maniculatus",
"maniculatus", "merriami", "torridus", "leucogaster", "merriami",
"albigula", "eremicus", "merriami", "penicillatus", "merriami",
"torridus", "penicillatus", "spectabilis", "penicillatus", "torridus",
"penicillatus", "albigula", "ordii", "maniculatus", "merriami",
"eremicus", "albigula", "merriami", "ordii", "spectabilis", "spectabilis",
"albigula", "albigula", "torridus", "spectabilis", "harrisi",
"torridus", "harrisi", "merriami", "eremicus", "harrisi", "spilosoma",
"ordii", "maniculatus", "eremicus", "albigula", "penicillatus",
"albigula", "merriami", "ordii", "spectabilis", "ordii", "merriami",
"merriami", "ordii", "leucogaster", "albigula", "maniculatus",
"eremicus", "spectabilis", "albigula", "merriami", "torridus",
"maniculatus", "albigula", "merriami", "penicillatus", "spectabilis",
"torridus", "penicillatus", "albigula", "merriami", "merriami",
"eremicus", "merriami", "merriami", "merriami", "eremicus", "torridus",
"penicillatus", "merriami", "merriami", "eremicus", "leucogaster",
"maniculatus", "hispidus", "eremicus", "albigula", "albigula",
"eremicus", "albigula", "eremicus", "eremicus", "leucogaster",
"merriami", "eremicus", "albigula", "merriami", "maniculatus",
"ordii", "eremicus", "leucogaster", "albigula", "leucogaster",
"merriami", "merriami", "ordii", "merriami", "merriami", "merriami",
"megalotis", "megalotis", "eremicus", "eremicus", "ordii", "albigula",
"merriami", "megalotis", "leucogaster", "maniculatus", "merriami",
"torridus", "merriami", "merriami", "megalotis", "megalotis",
"ordii", "maniculatus", "albigula", "merriami", "ordii", "spectabilis",
"ordii", "maniculatus", "megalotis", "megalotis", "merriami",
"leucogaster", "megalotis", "maniculatus", "maniculatus", "albigula",
"albigula", "megalotis", "maniculatus", "megalotis", "ordii",
"merriami", "merriami", "maniculatus", "ordii", "albigula", "maniculatus",
"ordii", "eremicus", "eremicus", "merriami", "sp.", "eremicus",
"albigula", "albigula", "eremicus", "merriami", "torridus", "leucogaster",
"sp.", "merriami", "albigula", "penicillatus", "maniculatus",
"merriami", "ordii", "megalotis", "maniculatus", "eremicus",
"eremicus", "ordii", "merriami", "eremicus", "spectabilis", "torridus",
"merriami", "ordii", "spectabilis", "eremicus", "maniculatus",
"flavus", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "spectabilis", "spectabilis", "hispidus", "spectabilis",
"megalotis", "albigula", "torridus", "ordii", "merriami", "merriami",
"eremicus", "merriami", "eremicus", "merriami", "albigula", "maniculatus",
"ordii", "maniculatus", "ordii", "harrisi", "leucogaster", "merriami",
"ordii", "eremicus", "albigula", "merriami", "megalotis", "torridus",
"albigula", "merriami", "maniculatus", "merriami", "merriami",
"megalotis", "torridus", "merriami", "albigula", "merriami",
"megalotis", "flavus", "torridus", "sp.", "merriami", "ordii",
"eremicus", "megalotis", "ordii", "ordii", "megalotis", "merriami",
"megalotis", "leucogaster", "megalotis", "maniculatus", "ordii",
"eremicus", "hispidus", "eremicus", "megalotis", "megalotis",
"merriami", "merriami", "eremicus", "eremicus", "merriami", "albigula",
"merriami", "albigula", "megalotis", "merriami", "torridus",
"megalotis", "eremicus", "merriami", "ordii", "megalotis", "merriami",
"eremicus", "leucogaster", "merriami", "megalotis", "maniculatus",
"ordii", "eremicus", "ordii", "albigula", "spectabilis", "megalotis",
"leucogaster", "merriami", "ordii", "megalotis", "merriami",
"maniculatus", "merriami", "megalotis", "ordii", "albigula",
"eremicus", "eremicus", "leucogaster", "maniculatus", "merriami",
"megalotis", "eremicus", "megalotis", "megalotis", "megalotis",
"megalotis", "leucogaster", "maniculatus", "megalotis", "megalotis",
"maniculatus", "albigula", "merriami", "merriami", "merriami",
"merriami", "torridus", "maniculatus", "albigula", "megalotis",
"merriami", "megalotis", "merriami", "merriami", "megalotis",
"albigula", "ordii", "ordii", "leucogaster", "megalotis", "megalotis",
"eremicus", "merriami", "merriami", "leucogaster", "eremicus",
"maniculatus", "ordii", "leucogaster", "albigula", "megalotis",
"ordii", "eremicus", "merriami", "torridus", "megalotis", "ordii",
"harrisi", "merriami", "maniculatus", "maniculatus", "merriami",
"megalotis", "spectabilis", "merriami", "eremicus", "maniculatus",
"merriami", "merriami", "ordii", "albigula", "eremicus", "merriami",
"merriami", "flavus", "megalotis", "megalotis", "merriami", "eremicus",
"merriami", "eremicus", "eremicus", "albigula", "maniculatus",
"spectabilis", "maniculatus", "ordii", "eremicus", "merriami",
"merriami", "eremicus", "merriami", "eremicus", "merriami", "albigula",
"megalotis", "albigula", "eremicus", "megalotis", "merriami",
"leucogaster", "ordii", "merriami", "megalotis", "spectabilis",
"merriami", "merriami", "megalotis", "flavus", "ordii", "megalotis",
"merriami", "megalotis", "leucogaster", "albigula", "merriami",
"eremicus", "leucogaster", "eremicus", "merriami", "megalotis",
"merriami", "merriami", "merriami", "eremicus", "harrisi", "albigula",
"ordii", "eremicus", "merriami", "eremicus", "spectabilis", "maniculatus",
"merriami", "merriami", "merriami", "merriami", "merriami", "megalotis",
"ordii", "merriami", "megalotis", "megalotis", "merriami", "eremicus",
"torridus", "hispidus", "merriami", "maniculatus", "megalotis",
"ordii", "megalotis", "megalotis", "megalotis", "ordii", "ordii",
"ordii", "megalotis", "megalotis", "merriami", "merriami", "megalotis",
"megalotis", "megalotis", "merriami", "eremicus", "megalotis",
"merriami", "ordii", "merriami", "merriami", "merriami", "merriami",
"megalotis", "megalotis", "megalotis", "ordii", "merriami", "megalotis",
"merriami", "spectabilis", "harrisi", "megalotis", "megalotis",
"megalotis", "ordii", "merriami", "maniculatus", "megalotis",
"megalotis", "eremicus", "ordii", "harrisi", "albigula", "albigula",
"eremicus", "maniculatus", "merriami", "ordii", "megalotis",
"maniculatus", "eremicus", "torridus", "megalotis", "megalotis",
"maniculatus", "merriami", "eremicus", "albigula", "ordii", "harrisi",
"eremicus", "eremicus", "merriami", "ordii", "merriami", "eremicus",
"megalotis", "megalotis", "ordii", "harrisi", "megalotis", "maniculatus",
"ordii", "merriami", "ordii", "eremicus", "merriami", "ordii",
"spectabilis", "ordii", "hispidus", "albigula", "maniculatus",
"megalotis", "merriami", "albigula", "merriami", "megalotis",
"sp.", "merriami", "merriami", "megalotis", "merriami", "merriami",
"ordii", "ordii", "megalotis", "merriami", "spectabilis", "ordii",
"spectabilis", "eremicus", "megalotis", "leucogaster", "eremicus",
"maniculatus", "eremicus", "merriami", "megalotis", "megalotis",
"megalotis", "merriami", "merriami", "merriami", "ordii", "albigula",
"merriami", "albigula", "merriami", "megalotis", "merriami",
"megalotis", "maniculatus", "leucogaster", "merriami", "eremicus",
"merriami", "merriami", "merriami", "ordii", "spectabilis", "eremicus",
"torridus", "megalotis", "maniculatus", "merriami", "ordii",
"merriami", "maniculatus", "ordii", "merriami", "megalotis",
"megalotis", "megalotis", "megalotis", "megalotis", "merriami",
"eremicus", "ordii", "maniculatus", "megalotis", "ordii", "harrisi",
"eremicus", "megalotis", "torridus", "megalotis", "harrisi",
"megalotis", "maniculatus", "merriami", "ordii", "megalotis",
"ordii", "megalotis", "megalotis", "merriami", "leucogaster",
"megalotis", "leucogaster", "megalotis", "ordii", "maniculatus",
"megalotis", "eremicus", "eremicus", "ordii", "spectabilis",
"eremicus", "merriami", "ordii", "merriami", "merriami", "merriami",
"megalotis", "albigula", "albigula", "megalotis", "merriami",
"ordii", "spectabilis", "ordii", "fulvescens", "ordii", "megalotis",
"merriami", "megalotis", "eremicus", "maniculatus", "harrisi",
"leucogaster", "megalotis", "maniculatus", "megalotis", "ordii",
"merriami", "eremicus", "megalotis", "merriami", "maniculatus",
"torridus", "torridus", "ordii", "megalotis", "hispidus", "eremicus",
"eremicus", "hispidus", "merriami", "merriami", "ordii", "harrisi",
"megalotis", "torridus", "merriami", "megalotis", "merriami",
"spectabilis", "albigula", "merriami", "megalotis", "albigula",
"ordii", "ordii", "eremicus", "torridus", "megalotis", "merriami",
"merriami", "eremicus", "ordii", "merriami", "eremicus", "eremicus",
"spectabilis", "merriami", "hispidus", "megalotis", "eremicus",
"spectabilis", "eremicus", "maniculatus", "merriami", "albigula",
"ordii", "albigula", "merriami", "megalotis", "megalotis", "eremicus",
"megalotis", "ordii", "megalotis", "merriami", "megalotis", "merriami",
"megalotis", "maniculatus", "megalotis", "megalotis", "ordii",
"merriami", "merriami", "ordii", "albigula", "eremicus", "ordii",
"merriami", "megalotis", "leucogaster", "merriami", "albigula",
"megalotis", "merriami", "maniculatus", "ordii", "leucogaster",
"merriami", "merriami", "merriami", "merriami", "maniculatus",
"megalotis", "albigula", "megalotis", "merriami", "ordii", "merriami",
"eremicus", "merriami", "megalotis", "spilosoma", "merriami",
"merriami", "maniculatus", "ordii", "ordii", "merriami", "megalotis",
"ordii", "ordii", "harrisi", "megalotis", "ordii", "ordii", "megalotis",
"eremicus", "megalotis", "megalotis", "merriami", "ordii", "hispidus",
"merriami", "megalotis", "megalotis", "merriami", "eremicus",
"megalotis", "merriami", "megalotis", "ordii", "albigula", "merriami",
"megalotis", "merriami", "leucogaster", "merriami", "megalotis",
"ordii", "megalotis", "spectabilis", "leucogaster", "ordii",
"merriami", "eremicus", "megalotis", "merriami", "albigula",
"maniculatus", "albigula", "eremicus", "merriami", "ordii", "merriami",
"merriami", "ordii", "merriami", "merriami", "megalotis", "megalotis",
"harrisi", "merriami", "torridus", "eremicus", "megalotis", "merriami",
"fulvescens", "merriami", "leucogaster", "ordii", "megalotis",
"maniculatus", "hispidus", "maniculatus", "merriami", "megalotis",
"penicillatus", "spectabilis", "merriami", "maniculatus", "penicillatus",
"merriami", "ordii", "eremicus", "merriami", "merriami", "megalotis",
"merriami", "maniculatus", "spectabilis", "merriami", "harrisi",
"albigula", "merriami", "torridus", "eremicus", "torridus", "spilosoma",
"merriami", "megalotis", "spectabilis", "megalotis", "megalotis",
"spilosoma", "megalotis", "eremicus", "megalotis", "merriami",
"eremicus", "spilosoma", "merriami", "merriami", "megalotis",
"maniculatus", "eremicus", "eremicus", "ordii", "merriami", "merriami",
"megalotis", "albigula", "megalotis", "megalotis", "ordii", "megalotis",
"maniculatus", "maniculatus", "leucogaster", "megalotis", "merriami",
"maniculatus", "ordii", "merriami", "maniculatus", "albigula",
"merriami", "merriami", "eremicus", "merriami", "merriami", "merriami",
"merriami", "maniculatus", "ordii", "merriami", "megalotis",
"flavus", "megalotis", "maniculatus", "merriami", "megalotis",
"torridus", "eremicus", "eremicus", "maniculatus", "eremicus",
"albigula", "merriami", "eremicus", "megalotis", "merriami",
"megalotis", "eremicus", "spectabilis", "spectabilis", "megalotis",
"megalotis", "fulvescens", "eremicus", "albigula", "merriami",
"megalotis", "torridus", "megalotis", "harrisi", "spilosoma",
"ordii", "eremicus", "hispidus", "megalotis", "torridus", "maniculatus",
"eremicus", "spectabilis", "megalotis", "spectabilis", "megalotis",
"harrisi", "torridus", "albigula", "maniculatus", "merriami",
"torridus", "eremicus", "merriami", "megalotis", "merriami",
"merriami", "ordii", "merriami", "merriami", "ordii", "ordii",
"albigula", "merriami", "ordii", "torridus", "megalotis", "torridus",
"albigula", "merriami", "hispidus", "ordii", "merriami", "spectabilis",
"eremicus", "ordii", "penicillatus", "eremicus", "spectabilis",
"merriami", "torridus", "merriami", "leucogaster", "albigula",
"spilosoma", "hispidus", "merriami", "merriami", "ordii", "merriami",
"leucogaster", "leucogaster", "eremicus", "spilosoma", "eremicus",
"penicillatus", "merriami", "ordii", "flavus", "merriami", "merriami",
"leucogaster", "ordii", "eremicus", "leucogaster", "ordii", "albigula",
"merriami", "merriami", "megalotis", "eremicus", "megalotis",
"merriami", "penicillatus", "eremicus", "maniculatus", "eremicus",
"albigula", "ordii", "merriami", "hispidus", "merriami", "harrisi",
"ordii", "ordii", "spectabilis", "ordii", "merriami", "merriami",
"spectabilis", "torridus", "ordii", "spectabilis", "merriami",
"penicillatus", "eremicus", "spectabilis", "merriami", "torridus",
"hispidus", "merriami", "eremicus", "albigula", "ordii", "eremicus",
"merriami", "penicillatus", "hispidus", "spilosoma", "penicillatus",
"merriami", "merriami", "albigula", "merriami", "albigula", "merriami",
"merriami", "eremicus", "ordii", "merriami", "albigula", "ordii",
"ordii", "merriami", "spectabilis", "leucogaster", "merriami",
"megalotis", "spectabilis", "merriami", "penicillatus", "harrisi",
"ordii", "merriami", "ordii", "eremicus", "merriami", "merriami",
"maniculatus", "eremicus", "torridus", "eremicus", "megalotis",
"albigula", "merriami", "penicillatus", "spectabilis", "harrisi",
"harrisi", "merriami", "merriami", "albigula", "torridus", "merriami",
"merriami", "ordii", "eremicus", "eremicus", "albigula", "merriami",
"eremicus", "ordii", "albigula", "torridus", "eremicus", "ordii",
"albigula", "torridus", "albigula", "megalotis", "albigula",
"megalotis", "merriami", "torridus", "eremicus", "spectabilis",
"ordii", "ordii", "ordii", "eremicus", "eremicus", "merriami",
"merriami", "maniculatus", "spectabilis", "megalotis", "albigula",
"megalotis", "eremicus", "megalotis", "ordii", "eremicus", "eremicus",
"eremicus", "spectabilis", "merriami", "torridus", "merriami",
"merriami", "penicillatus", "eremicus", "eremicus", "ordii",
"hispidus", "penicillatus", "torridus", "merriami", "ordii",
"torridus", "spilosoma", "harrisi", "eremicus", "merriami", "albigula",
"eremicus", "leucogaster", "merriami", "spilosoma", "spectabilis",
"penicillatus", "leucogaster", "merriami", "penicillatus", "spectabilis",
"albigula", "leucogaster", "megalotis", "penicillatus", "fulvescens",
"merriami", "megalotis", "merriami", "merriami", "ordii", "merriami",
"megalotis", "eremicus", "hispidus", "merriami", "penicillatus",
"merriami", "eremicus", "albigula", "merriami", "megalotis",
"penicillatus", "torridus", "eremicus", "merriami", "leucogaster",
"eremicus", "albigula", "merriami", "ordii", "merriami", "merriami",
"merriami", "albigula", "eremicus", "merriami", "spectabilis",
"merriami", "merriami", "albigula", "merriami", "eremicus", "merriami",
"penicillatus", "merriami", "merriami", "eremicus", "megalotis",
"albigula", "torridus", "merriami", "albigula", "albigula", "ordii",
"megalotis", "ordii", "albigula", "ordii", "eremicus", "penicillatus",
"maniculatus", "leucogaster", "merriami", "merriami", "albigula",
"hispidus", "eremicus", "eremicus", "albigula", "eremicus", "penicillatus",
"spectabilis", "maniculatus", "torridus", "merriami", "torridus",
"eremicus", "eremicus", "ordii", "eremicus", "merriami", "penicillatus",
"penicillatus", "hispidus", "megalotis", "ordii", "merriami",
"penicillatus", "merriami", "albigula", "eremicus", "merriami",
"eremicus", "albigula", "ordii", "merriami", "merriami", "merriami",
"spectabilis", "merriami", "ordii", "merriami", "ordii", "merriami",
"ordii", "merriami", "merriami", "penicillatus", "penicillatus",
"albigula", "leucogaster", "merriami", "albigula", "torridus",
"merriami", "merriami", "leucogaster", "merriami", "eremicus",
"albigula", "spectabilis", "spectabilis", "merriami", "penicillatus",
"torridus", "merriami", "merriami", "torridus", "maniculatus",
"merriami", "ordii", "albigula", "ordii", "ordii", "torridus",
"megalotis", "albigula", "eremicus", "eremicus", "ordii", "albigula",
"penicillatus", "ordii", "eremicus", "eremicus", "torridus",
"ordii", "leucogaster", "ordii", "megalotis", "albigula", "torridus",
"ordii", "eremicus", "maniculatus", "merriami", "albigula", "penicillatus",
"spectabilis", "albigula", "penicillatus", "eremicus", "merriami",
"penicillatus", "harrisi", "penicillatus", "penicillatus", "albigula",
"megalotis", "merriami", "megalotis", "eremicus", "torridus",
"torridus", "megalotis", "eremicus", "maniculatus", "merriami",
"penicillatus", "hispidus", "ordii", "eremicus", "penicillatus",
"penicillatus", "merriami", "albigula", "albigula", "merriami",
"merriami", "albigula", "merriami", "merriami", "hispidus", "ordii",
"albigula", "spilosoma", "merriami", "albigula", "penicillatus",
"eremicus", "merriami", "spectabilis", "spectabilis", "merriami",
"penicillatus", "megalotis", "merriami", "eremicus", "merriami",
"eremicus", "eremicus", "penicillatus", "eremicus", "eremicus",
"penicillatus", "merriami", "leucogaster", "penicillatus", "eremicus",
"merriami", "merriami", "merriami", "spectabilis", "merriami",
"merriami", "ordii", "merriami", "penicillatus", "penicillatus",
"ordii", "harrisi", "eremicus", "penicillatus", "merriami", "merriami",
"merriami", "megalotis", "merriami", "hispidus", "penicillatus",
"merriami", "torridus", "penicillatus", "merriami", "albigula",
"torridus", "torridus", "albigula", "spilosoma", "merriami",
"eremicus", "eremicus", "torridus", "fulvescens", "merriami",
"penicillatus", "eremicus", "spectabilis", "merriami", "albigula",
"merriami", "penicillatus", "ordii", "albigula", "maniculatus",
"merriami", "eremicus", "albigula", "albigula", "hispidus", "ordii",
"torridus", "merriami", "penicillatus", "merriami", "spilosoma",
"torridus", "spilosoma", "merriami", "eremicus", "albigula",
"spilosoma", "eremicus", "merriami", "penicillatus", "ordii",
"merriami", "torridus", "torridus", "merriami", "ordii", "merriami",
"spectabilis", "penicillatus", "eremicus", "merriami", "eremicus",
"penicillatus", "torridus", "torridus", "leucogaster", "leucogaster",
"merriami", "albigula", "merriami", "spilosoma", "spilosoma",
"merriami", "megalotis", "torridus", "merriami", "albigula",
"eremicus", "merriami", "spilosoma", "merriami", "merriami",
"eremicus", "merriami", "eremicus", "torridus", "eremicus", "torridus",
"eremicus", "albigula", "eremicus", "ordii", "eremicus", "eremicus",
"albigula", "eremicus", "hispidus", "merriami", "ordii", "harrisi",
"hispidus", "torridus", "torridus", "merriami", "spectabilis",
"merriami", "albigula", "albigula", "ordii", "torridus", "merriami",
"eremicus", "eremicus", "harrisi", "ordii", "torridus", "eremicus",
"penicillatus", "eremicus", "maniculatus", "eremicus", "merriami",
"maniculatus", "torridus", "torridus", "merriami", "torridus",
"merriami", "albigula", "albigula", "penicillatus", "spilosoma",
"albigula", "merriami", "merriami", "eremicus", "merriami", "merriami",
"ordii", "merriami", "megalotis", "merriami", "merriami", "spilosoma",
"merriami", "merriami", "spectabilis", "albigula", "merriami",
"merriami", "merriami", "harrisi", "merriami", "eremicus", "torridus",
"merriami", "merriami", "merriami", "eremicus", "torridus", "merriami",
"spectabilis", "torridus", "merriami", "maniculatus", "merriami",
"merriami", "torridus", "leucogaster", "eremicus", "merriami",
"merriami", "merriami", "eremicus", "torridus", "merriami", "albigula",
"leucogaster", "eremicus", "eremicus", "torridus", "megalotis",
"torridus", "hispidus", "albigula", "albigula", "maniculatus",
"hispidus", "eremicus", "ordii", "leucogaster", "torridus", "eremicus",
"eremicus", "eremicus", "megalotis", "megalotis", "eremicus",
"harrisi", "merriami", "hispidus", "megalotis", "eremicus", "megalotis",
"eremicus", "torridus", "megalotis", "megalotis", "spectabilis",
"torridus", "merriami", "albigula", "maniculatus", "megalotis",
"merriami", "merriami", "eremicus", "eremicus", "megalotis",
"eremicus", "leucogaster", "ordii", "eremicus", "torridus", "hispidus",
"eremicus", "torridus", "ordii", "eremicus", "megalotis", "spectabilis",
"leucogaster", "hispidus", "albigula", "albigula", "hispidus",
"merriami", "torridus", "merriami", "eremicus", "megalotis",
"merriami", "torridus", "merriami", "merriami", "leucogaster",
"torridus", "merriami", "merriami", "leucogaster", "megalotis",
"megalotis", "merriami", "eremicus", "eremicus", "merriami",
"leucogaster", "megalotis", "merriami", "leucogaster", "megalotis",
"leucogaster", "merriami", "megalotis", "merriami", "megalotis",
"ordii", "merriami", "hispidus", "spectabilis", "megalotis",
"merriami", "eremicus", "eremicus", "albigula", "merriami", "maniculatus",
"eremicus", "leucogaster", "eremicus", "merriami", "torridus",
"eremicus", "eremicus", "merriami", "fulvescens", "megalotis",
"merriami", "eremicus", "ordii", "leucogaster", "merriami", "ordii",
"leucogaster", "albigula", "leucogaster", "merriami", "merriami",
"merriami", "eremicus", "eremicus", "leucogaster", "spectabilis",
"leucogaster", "merriami", "eremicus", "albigula", "torridus",
"torridus", "merriami", "maniculatus", "fulvescens", "merriami",
"merriami", "torridus", "albigula", "megalotis", "eremicus",
"eremicus", "ordii", "megalotis", "megalotis", "megalotis", "leucogaster",
"ordii", "megalotis", "merriami", "albigula", "eremicus", "leucogaster",
"megalotis", "ordii", "ordii", "megalotis", "leucogaster", "megalotis",
"spectabilis", "torridus", "merriami", "eremicus", "megalotis",
"albigula", "fulvescens", "harrisi", "megalotis", "megalotis",
"megalotis", "eremicus", "megalotis", "megalotis", "ordii", "megalotis",
"merriami", "fulvescens", "megalotis", "merriami", "megalotis",
"ordii", "spectabilis", "megalotis", "merriami", "merriami",
"megalotis", "merriami", "megalotis", "sp.", "merriami", "eremicus",
"megalotis", "merriami", "megalotis", "eremicus", "ordii", "megalotis",
"merriami", "eremicus", "torridus", "eremicus", "megalotis",
"hispidus", "merriami", "merriami", "megalotis", "megalotis",
"albigula", "megalotis", "merriami", "fulvescens", "spectabilis",
"megalotis", "harrisi", "leucogaster", "merriami", "merriami",
"merriami", "torridus", "megalotis", "ordii", "megalotis", "fulvescens",
"merriami", "hispidus", "torridus", "megalotis", "merriami",
"eremicus", "torridus", "merriami", "maniculatus", "eremicus",
"spectabilis", "merriami", "merriami", "merriami", "megalotis",
"merriami", "eremicus", "megalotis", "merriami", "ordii", "leucogaster",
"merriami", "eremicus", "megalotis", "megalotis", "eremicus",
"megalotis", "merriami", "megalotis", "leucogaster", "megalotis",
"merriami", "megalotis", "merriami", "ordii", "eremicus", "leucogaster",
"megalotis", "megalotis", "megalotis", "merriami", "albigula",
"eremicus", "merriami", "eremicus", "torridus", "megalotis",
"merriami", "merriami", "torridus", "maniculatus", "merriami",
"megalotis", "megalotis", "hispidus", "fulvescens", "torridus",
"megalotis", "albigula", "megalotis", "megalotis", "megalotis",
"merriami", "torridus", "leucogaster", "megalotis", "eremicus",
"harrisi", "megalotis", "fulvescens", "eremicus", "eremicus",
"merriami", "megalotis", "merriami", "eremicus", "leucogaster",
"megalotis", "torridus", "merriami", "merriami", "eremicus",
"merriami", "spectabilis", "megalotis", "megalotis", "albigula",
"ordii", "maniculatus", "megalotis", "megalotis", "ordii", "torridus",
"merriami", "megalotis", "megalotis", "albigula", "ordii", "fulvescens",
"hispidus", "hispidus", "ordii", "torridus", "ordii", "torridus",
"ordii", "torridus", "fulvescens", "megalotis", "megalotis",
"merriami", "eremicus", "maniculatus", "eremicus", "megalotis",
"megalotis", "hispidus", "leucogaster", "hispidus", "fulvescens",
"leucogaster", "merriami", "albigula", "eremicus", "eremicus",
"megalotis", "megalotis", "megalotis", "hispidus", "megalotis",
"megalotis", "megalotis", "megalotis", "merriami", "ordii", "spectabilis",
"leucogaster", "megalotis", "eremicus", "megalotis", "merriami",
"merriami", "megalotis", "albigula", "torridus", "leucogaster",
"merriami", "megalotis", "megalotis", "merriami", "harrisi",
"spectabilis", "merriami", "megalotis", "eremicus", "torridus",
"megalotis", "megalotis", "merriami", "merriami", "eremicus",
"merriami", "megalotis", "merriami", "eremicus", "megalotis",
"megalotis", "merriami", "megalotis", "leucogaster", "torridus",
"merriami", "merriami", "merriami", "torridus", "eremicus", "ordii",
"merriami", "leucogaster", "megalotis", "megalotis", "merriami",
"leucogaster", "megalotis", "megalotis", "megalotis", "eremicus",
"albigula", "torridus", "eremicus", "merriami", "megalotis",
"merriami", "maniculatus", "torridus", "fulvescens", "merriami",
"leucogaster", "merriami", "megalotis", "megalotis", "harrisi",
"merriami", "merriami", "megalotis", "merriami", "merriami",
"megalotis", "ordii", "eremicus", "merriami", "eremicus", "megalotis",
"megalotis", "ordii", "eremicus", "maniculatus", "fulvescens",
"leucogaster", "eremicus", "megalotis", "eremicus", "leucogaster",
"megalotis", "maniculatus", "hispidus", "albigula", "fulvescens",
"megalotis", "megalotis", "albigula", "harrisi", "harrisi", "eremicus",
"harrisi", "megalotis", "eremicus", "megalotis", "ordii", "maniculatus",
"fulvescens", "megalotis", "megalotis", "merriami", "merriami",
"leucogaster", "eremicus", "ordii", "megalotis", "ordii", "eremicus",
"eremicus", "megalotis", "merriami", "maniculatus", "spectabilis",
"eremicus", "megalotis", "ordii", "merriami", "fulvescens", "megalotis",
"megalotis", "torridus", "leucogaster", "ordii", "merriami",
"megalotis", "torridus", "eremicus", "megalotis", "eremicus",
"ordii", "spectabilis", "ordii", "ordii", "merriami", "merriami",
"torridus", "maniculatus", "megalotis", "megalotis", "megalotis",
"megalotis", "eremicus", "fulvescens", "megalotis", "torridus",
"megalotis", "merriami", "hispidus", "ordii", "hispidus", "merriami",
"megalotis", "megalotis", "merriami", "megalotis", "torridus",
"megalotis", "merriami", "ordii", "eremicus", "fulvescens", "merriami",
"megalotis", "eremicus", "fulvescens", "megalotis", "megalotis",
"megalotis", "eremicus", "harrisi", "albigula", "eremicus", "albigula",
"megalotis", "albigula", "spectabilis", "megalotis", "megalotis",
"megalotis", "megalotis", "megalotis", "merriami", "merriami",
"megalotis", "eremicus", "merriami", "megalotis", "eremicus",
"megalotis", "merriami", "merriami", "merriami", "fulvescens",
"megalotis", "leucogaster", "megalotis", "megalotis", "torridus",
"eremicus", "eremicus", "merriami", "megalotis", "megalotis",
"merriami", "harrisi", "eremicus", "leucogaster", "megalotis",
"eremicus", "megalotis", "merriami", "megalotis", "merriami",
"hispidus", "megalotis", "merriami", "leucogaster", "megalotis",
"torridus", "merriami", "merriami", "ordii", "megalotis", "eremicus",
"ordii", "merriami", "torridus", "merriami", "leucogaster", "eremicus",
"leucogaster", "megalotis", "eremicus", "megalotis", "merriami",
"megalotis", "megalotis", "merriami", "merriami", "merriami",
"leucogaster", "eremicus", "leucogaster", "torridus", "megalotis",
"megalotis", "megalotis", "leucogaster", "merriami", "leucogaster",
"leucogaster", "megalotis", "maniculatus", "megalotis", "merriami",
"merriami", "merriami", "merriami", "megalotis", "albigula",
"eremicus", "torridus", "megalotis", "torridus", "albigula",
"megalotis", "albigula", "eremicus", "megalotis", "megalotis",
"megalotis", "eremicus", "leucogaster", "megalotis", "megalotis",
"megalotis", "maniculatus", "megalotis", "megalotis", "ordii",
"spectabilis", "megalotis", "eremicus", "megalotis", "leucogaster",
"eremicus", "maniculatus", "eremicus", "eremicus", "hispidus",
"spectabilis", "megalotis", "merriami", "megalotis", "megalotis",
"eremicus", "megalotis", "eremicus", "megalotis", "spectabilis",
"eremicus", "eremicus", "megalotis", "fulvescens", "megalotis",
"eremicus", "merriami", "merriami", "megalotis", "hispidus",
"eremicus", "megalotis", "fulvescens", "leucogaster", "ordii",
"megalotis", "torridus", "megalotis", "megalotis", "megalotis",
"eremicus", "megalotis", "megalotis", "torridus", "maniculatus",
"megalotis", "megalotis", "hispidus", "megalotis", "eremicus",
"megalotis", "torridus", "merriami", "leucogaster", "ordii",
"megalotis", "megalotis", "megalotis", "megalotis", "hispidus",
"megalotis", "albigula", "leucogaster", "ordii", "penicillatus",
"eremicus", "torridus", "megalotis", "ordii", "merriami", "eremicus",
"hispidus", "eremicus", "megalotis", "eremicus", "fulvescens",
"leucogaster", "eremicus", "albigula", "eremicus", "megalotis",
"megalotis", "harrisi", "megalotis", "merriami", "hispidus",
"ordii", "merriami", "hispidus", "merriami", "merriami", "leucogaster",
"megalotis", "fulvescens", "spectabilis", "merriami", "megalotis",
"megalotis", "megalotis", "torridus", "albigula", "merriami",
"fulvescens", "merriami", "megalotis", "megalotis", "eremicus",
"megalotis", "merriami", "spectabilis", "eremicus", "eremicus",
"merriami", "megalotis", "spilosoma", "merriami", "merriami",
"merriami", "megalotis", "spilosoma", "merriami", "megalotis",
"megalotis", "megalotis", "megalotis", "merriami", "maniculatus",
"merriami", "merriami", "megalotis", "megalotis", "hispidus",
"maniculatus", "megalotis", "merriami", "merriami", "hispidus",
"leucogaster", "penicillatus", "eremicus", "ordii", "eremicus",
"albigula", "albigula", "hispidus", "merriami", "leucogaster",
"megalotis", "spectabilis", "megalotis", "eremicus", "eremicus",
"fulvescens", "hispidus", "merriami", "merriami", "megalotis",
"merriami", "megalotis", "eremicus", "ordii", "spilosoma", "megalotis",
"penicillatus", "merriami", "penicillatus", "merriami", "spectabilis",
"megalotis", "merriami", "ordii", "megalotis", "megalotis", "megalotis",
"merriami", "torridus", "merriami", "eremicus", "megalotis",
"leucogaster", "megalotis", "merriami", "leucogaster", "merriami",
"megalotis", "megalotis", "leucogaster", "merriami", "megalotis",
"fulvescens", "megalotis", "merriami", "penicillatus", "leucogaster",
"penicillatus", "fulvescens", "penicillatus", "ordii", "megalotis",
"leucogaster", "megalotis", "penicillatus", "ordii", "fulvescens",
"megalotis", "megalotis", "eremicus", "hispidus", "albigula",
"merriami", "merriami", "eremicus", "megalotis", "megalotis",
"eremicus", "megalotis", "fulvescens", "albigula", "eremicus",
"hispidus", "merriami", "megalotis", "megalotis", "megalotis",
"fulvescens", "torridus", "megalotis", "megalotis", "eremicus",
"megalotis", "megalotis", "megalotis", "albigula", "megalotis",
"megalotis", "megalotis", "megalotis", "spectabilis", "ordii",
"hispidus", "fulvescens", "albigula", "ordii", "merriami", "harrisi",
"megalotis", "eremicus", "megalotis", "megalotis", "megalotis",
"torridus", "megalotis", "megalotis", "megalotis", "megalotis",
"merriami", "maniculatus", "eremicus", "megalotis", "merriami",
"penicillatus", "spectabilis", "eremicus", "eremicus", "merriami",
"megalotis", "megalotis", "torridus", "harrisi", "merriami",
"megalotis", "albigula", "eremicus", "megalotis", "megalotis",
"albigula", "eremicus", "ordii", "torridus", "albigula", "eremicus",
"hispidus", "albigula", "eremicus", "merriami", "fulvescens",
"ordii", "merriami", "torridus", "spectabilis", "eremicus", "megalotis",
"merriami", "torridus", "spectabilis", "eremicus", "megalotis",
"ordii", "merriami", "hispidus", "megalotis", "megalotis", "leucogaster",
"fulvescens", "leucogaster", "maniculatus", "albigula", "ordii",
"merriami", "megalotis", "eremicus", "merriami", "albigula",
"maniculatus", "eremicus", "ordii", "merriami", "eremicus", "megalotis",
"hispidus", "megalotis", "ordii", "eremicus", "megalotis", "megalotis",
"albigula", "torridus", "megalotis", "hispidus", "ordii", "merriami",
"maniculatus", "ordii", "maniculatus", "albigula", "leucogaster",
"penicillatus", "hispidus", "penicillatus", "megalotis", "penicillatus",
"merriami", "hispidus", "merriami", "eremicus", "megalotis",
"merriami", "megalotis", "spectabilis", "merriami", "merriami",
"merriami", "albigula", "spilosoma", "merriami", "eremicus",
"megalotis", "megalotis", "eremicus", "megalotis", "eremicus",
"leucogaster", "megalotis", "merriami", "torridus", "megalotis",
"merriami", "merriami", "eremicus", "merriami", "merriami", "fulvescens",
"megalotis", "megalotis", "merriami", "eremicus", "merriami",
"merriami", "merriami", "merriami", "hispidus", "fulvescens",
"megalotis", "merriami", "megalotis", "merriami", "megalotis",
"torridus", "hispidus", "megalotis", "harrisi", "albigula", "eremicus",
"megalotis", "ordii", "eremicus", "megalotis", "maniculatus",
"eremicus", "maniculatus", "megalotis", "albigula", "eremicus",
"albigula", "megalotis", "merriami", "megalotis", "megalotis",
"hispidus", "megalotis", "ordii", "megalotis", "albigula", "harrisi",
"eremicus", "merriami", "fulvescens", "albigula", "megalotis",
"maniculatus", "harrisi", "spectabilis", "megalotis", "fulvescens",
"ordii", "megalotis", "ordii", "merriami", "megalotis", "megalotis",
"eremicus", "hispidus", "maniculatus", "eremicus", "megalotis",
"merriami", "megalotis", "megalotis", "torridus", "eremicus",
"eremicus", "torridus", "eremicus", "albigula", "hispidus", "spectabilis",
"megalotis", "megalotis", "merriami", "megalotis", "hispidus",
"megalotis", "spilosoma", "merriami", "merriami", "spilosoma",
"hispidus", "fulvescens", "eremicus", "hispidus", "ordii", "merriami",
"spectabilis", "megalotis", "merriami", "merriami", "eremicus",
"harrisi", "leucogaster", "eremicus", "megalotis", "megalotis",
"megalotis", "merriami", "ordii", "eremicus", "harrisi", "megalotis",
"merriami", "megalotis", "spilosoma", "megalotis", "merriami",
"merriami", "albigula", "merriami", "merriami", "leucogaster",
"merriami", "megalotis", "penicillatus", "megalotis", "eremicus",
"merriami", "eremicus", "merriami", "merriami", "eremicus", "merriami",
"leucogaster", "merriami", "merriami", "megalotis", "eremicus",
"eremicus", "merriami", "megalotis", "megalotis", "megalotis",
"eremicus", "spilosoma", "fulvescens", "ordii", "hispidus", "albigula",
"megalotis", "albigula", "maniculatus", "megalotis", "spilosoma",
"hispidus", "megalotis", "harrisi", "albigula", "albigula", "fulvescens",
"merriami", "sp.", "megalotis", "megalotis", "hispidus", "megalotis",
"harrisi", "albigula", "harrisi", "fulvescens", "merriami", "megalotis",
"spectabilis", "megalotis", "eremicus", "spilosoma", "merriami",
"megalotis", "maniculatus", "albigula", "ordii", "spectabilis",
"leucogaster", "spilosoma", "torridus", "megalotis", "harrisi",
"albigula", "spilosoma", "harrisi", "fulvescens", "eremicus",
"megalotis", "merriami", "eremicus", "hispidus", "albigula",
"megalotis", "merriami", "merriami", "merriami", "hispidus",
"ordii", "eremicus", "merriami", "megalotis", "torridus", "megalotis",
"megalotis", "torridus", "merriami", "eremicus", "ordii", "spectabilis",
"harrisi", "merriami", "merriami", "merriami", "merriami", "eremicus",
"harrisi", "penicillatus", "spilosoma", "hispidus", "spilosoma",
"megalotis", "merriami", "merriami", "penicillatus", "merriami",
"megalotis", "merriami", "megalotis", "hispidus", "merriami",
"leucogaster", "ordii", "megalotis", "albigula", "fulvescens",
"spilosoma", "merriami", "megalotis", "megalotis", "torridus",
"merriami", "penicillatus", "merriami", "megalotis", "merriami",
"torridus", "torridus", "torridus", "penicillatus", "eremicus",
"merriami", "eremicus", "penicillatus", "hispidus", "megalotis",
"albigula", "torridus", "merriami", "megalotis", "ordii", "albigula",
"spectabilis", "megalotis", "merriami", "merriami", "megalotis",
"merriami", "merriami", "merriami", "ordii", "albigula", "eremicus",
"ordii", "penicillatus", "eremicus", "eremicus", "maniculatus",
"hispidus", "penicillatus", "megalotis", "torridus", "ordii",
"eremicus", "ordii", "merriami", "megalotis", "penicillatus",
"merriami", "merriami", "torridus", "megalotis", "ordii", "spectabilis",
"ordii", "leucogaster", "merriami", "merriami", "merriami", "megalotis",
"merriami", "merriami", "fulvescens", "merriami", "ordii", "merriami",
"spilosoma", "megalotis", "penicillatus", "merriami", "merriami",
"eremicus", "megalotis", "penicillatus", "merriami", "merriami",
"merriami", "eremicus", "albigula", "merriami", "penicillatus",
"merriami", "merriami", "torridus", "harrisi", "megalotis", "merriami",
"albigula", "merriami", "merriami", "megalotis", "torridus",
"ordii", "merriami", "merriami", "merriami", "merriami", "penicillatus",
"leucogaster", "torridus", "ordii", "penicillatus", "flavus",
"ordii", "torridus", "flavus", "hispidus", "penicillatus", "torridus",
"ordii", "torridus", "ordii", "merriami", "torridus", "eremicus",
"merriami", "torridus", "torridus", "spilosoma", "torridus",
"ordii", "spectabilis", "merriami", "merriami", "torridus", "eremicus",
"albigula", "penicillatus", "ordii", "torridus", "eremicus",
"hispidus", "ordii", "ordii", "eremicus", "merriami", "ordii",
"merriami", "torridus", "albigula", "merriami", "penicillatus",
"merriami", "merriami", "penicillatus", "ordii", "merriami",
"merriami", "hispidus", "ordii", "hispidus", "merriami", "torridus",
"merriami", "merriami", "penicillatus", "ordii", "merriami",
"harrisi", "penicillatus", "merriami", "leucogaster", "merriami",
"merriami", "merriami", "albigula", "merriami", "merriami", "torridus",
"ordii", "ordii", "harrisi", "merriami", "eremicus", "torridus",
"merriami", "torridus", "torridus", "torridus", "merriami", "merriami",
"eremicus", "merriami", "leucogaster", "eremicus", "ordii", "merriami",
"penicillatus", "hispidus", "torridus", "spectabilis", "hispidus",
"merriami", "merriami", "fulvescens", "torridus", "merriami",
"ordii", "megalotis", "penicillatus", "albigula", "megalotis",
"megalotis", "merriami", "spilosoma", "merriami", "hispidus",
"merriami", "merriami", "fulvescens", "merriami", "torridus",
"eremicus", "ordii", "penicillatus", "ordii", "eremicus", "megalotis",
"merriami", "albigula", "penicillatus", "penicillatus", "merriami",
"torridus", "torridus", "megalotis", "ordii", "eremicus", "penicillatus",
"merriami", "merriami", "eremicus", "torridus", "eremicus", "flavus",
"flavus", "harrisi", "merriami", "megalotis", "flavus", "ordii",
"ordii", "torridus", "harrisi", "eremicus", "eremicus", "merriami",
"megalotis", "merriami", "merriami", "ordii", "spectabilis",
"albigula", "merriami", "megalotis", "merriami", "ordii", "torridus",
"merriami", "eremicus", "eremicus", "megalotis", "penicillatus",
"megalotis", "megalotis", "megalotis", "merriami", "megalotis",
"torridus", "taylori", "taylori", "eremicus", "flavus", "torridus",
"megalotis", "megalotis", "eremicus", "albigula", "fulvescens",
"megalotis", "megalotis", "eremicus", "ordii", "torridus", "megalotis",
"eremicus", "megalotis", "ordii", "albigula", "eremicus", "megalotis",
"torridus", "megalotis", "ordii", "eremicus", "albigula", "fulvescens",
"torridus", "hispidus", "megalotis", "merriami", "megalotis",
"flavus", "eremicus", "spectabilis", "megalotis", "ordii", "megalotis",
"megalotis", "torridus", "flavus", "albigula", "torridus", "albigula",
"ordii", "megalotis", "eremicus", "merriami", "penicillatus",
"ordii", "ordii", "fulvescens", "eremicus", "megalotis", "ordii",
"eremicus", "eremicus", "torridus", "fulviventer", "merriami",
"ordii", "megalotis", "merriami", "ordii", "flavus", "ordii",
"merriami", "megalotis", "fulviventer", "torridus", "merriami",
"torridus", "merriami", "megalotis", "leucogaster", "eremicus",
"leucogaster", "harrisi", "torridus", "merriami", "leucogaster",
"penicillatus", "merriami", "megalotis", "megalotis", "merriami",
"leucogaster", "harrisi", "merriami", "torridus", "megalotis",
"eremicus", "merriami", "merriami", "torridus", "merriami", "merriami",
"hispidus", "torridus", "fulvescens", "merriami", "spectabilis",
"torridus", "flavus", "megalotis", "penicillatus", "torridus",
"eremicus", "merriami", "megalotis", "ordii", "merriami", "merriami",
"merriami", "megalotis", "merriami", "torridus", "megalotis",
"penicillatus", "leucogaster", "ordii", "ordii", "merriami",
"ordii", "eremicus", "merriami", "megalotis", "penicillatus",
"merriami", "megalotis", "megalotis", "megalotis", "penicillatus",
"megalotis", "megalotis", "merriami", "ordii", "leucogaster",
"eremicus", "torridus", "fulviventer", "fulviventer", "flavus",
"torridus", "megalotis", "fulvescens", "ordii", "megalotis",
"megalotis", "albigula", "megalotis", "merriami", "eremicus",
"eremicus", "ordii", "eremicus", "torridus", "megalotis", "ordii",
"megalotis", "megalotis", "megalotis", "megalotis", "megalotis",
"spectabilis", "megalotis", "flavus", "flavus", "ordii", "ordii",
"megalotis", "merriami", "merriami", "megalotis", "megalotis",
"megalotis", "ordii", "megalotis", "megalotis", "ordii", "hispidus",
"megalotis", "megalotis", "megalotis", "megalotis", "megalotis",
"megalotis", "albigula", "eremicus", "megalotis", "fulvescens",
"megalotis", "eremicus", "eremicus", "torridus", "megalotis",
"ordii", "megalotis", "megalotis", "fulvescens", "eremicus",
"megalotis", "megalotis", "merriami", "ordii", "eremicus", "eremicus",
"merriami", "megalotis", "fulviventer", "megalotis", "merriami",
"megalotis", "megalotis", "merriami", "ordii", "eremicus", "ordii",
"megalotis", "merriami", "megalotis", "ordii", "merriami", "megalotis",
"merriami", "albigula", "merriami", "merriami", "megalotis",
"merriami", "merriami", "merriami", "megalotis", "megalotis",
"merriami", "ordii", "eremicus", "merriami", "torridus", "merriami",
"merriami", "eremicus", "megalotis", "taylori", "megalotis",
"merriami", "merriami", "megalotis", "merriami", "ordii", "merriami",
"merriami", "megalotis", "ordii", "torridus", "merriami", "spectabilis",
"megalotis", "merriami", "megalotis", "ordii", "fulvescens",
"ordii", "megalotis", "megalotis", "merriami", "merriami", "merriami"
), taxa = c("Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent", "Rodent",
"Rodent"), plot_type = c("Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Control", "Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Control",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Spectab exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Control",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Control",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Spectab exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Spectab exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Rodent Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Rodent Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Spectab exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Spectab exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Spectab exclosure", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Rodent Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Rodent Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Spectab exclosure",
"Rodent Exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Control", "Long-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Spectab exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Control",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Rodent Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Spectab exclosure", "Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Control", "Control", "Rodent Exclosure",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Control", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Control", "Control", "Control", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Spectab exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Control", "Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Control", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Spectab exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Spectab exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Control", "Control", "Control", "Control",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Spectab exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Long-term Krat Exclosure", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Spectab exclosure",
"Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Rodent Exclosure",
"Control", "Spectab exclosure", "Control", "Spectab exclosure",
"Short-term Krat Exclosure", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Control", "Control", "Spectab exclosure",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Control", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Long-term Krat Exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Rodent Exclosure",
"Control", "Control", "Rodent Exclosure", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Control", "Rodent Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Rodent Exclosure", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Spectab exclosure", "Rodent Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Spectab exclosure", "Short-term Krat Exclosure",
"Control", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Spectab exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Short-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Control",
"Long-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Rodent Exclosure", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Rodent Exclosure", "Control",
"Control", "Control", "Rodent Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Spectab exclosure", "Spectab exclosure", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Control",
"Spectab exclosure", "Control", "Control", "Spectab exclosure",
"Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Rodent Exclosure", "Control", "Short-term Krat Exclosure", "Rodent Exclosure",
"Rodent Exclosure", "Control", "Control", "Short-term Krat Exclosure",
"Rodent Exclosure", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Short-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Long-term Krat Exclosure", "Control",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Short-term Krat Exclosure", "Control", "Rodent Exclosure",
"Spectab exclosure", "Long-term Krat Exclosure", "Control", "Spectab exclosure",
"Control", "Rodent Exclosure", "Long-term Krat Exclosure", "Long-term Krat Exclosure",
"Short-term Krat Exclosure", "Rodent Exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Short-term Krat Exclosure", "Rodent Exclosure",
"Long-term Krat Exclosure", "Control", "Short-term Krat Exclosure",
"Long-term Krat Exclosure", "Control", "Spectab exclosure", "Control",
"Rodent Exclosure", "Short-term Krat Exclosure", "Long-term Krat Exclosure",
"Long-term Krat Exclosure", "Rodent Exclosure", "Control", "Spectab exclosure",
"Long-term Krat Exclosure", "Control", "Control", "Rodent Exclosure",
"Control", "Rodent Exclosure", "Control", "Control", "Long-term Krat Exclosure",
"Control", "Spectab exclosure", "Long-term Krat Exclosure", "Control",
"Short-term Krat Exclosure", "Control", "Control", "Control",
"Control", "Long-term Krat Exclosure", "Control", "Long-term Krat Exclosure",
"Control", "Control", "Long-term Krat Exclosure", "Control",
"Control", "Control", "Control", "Spectab exclosure", "Control",
"Control", "Control", "Control", "Control", "Control", "Control",
"Control", "Control", "Long-term Krat Exclosure", "Rodent Exclosure",
"Spectab exclosure", "Control", "Rodent Exclosure", "Spectab exclosure",
"Control", "Control", "Spectab exclosure", "Long-term Krat Exclosure",
"Control", "Rodent Exclosure", "Spectab exclosure", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Control",
"Rodent Exclosure", "Control", "Rodent Exclosure", "Rodent Exclosure",
"Control", "Control", "Control")), class = "data.frame", row.names = c(NA,
-16148L))

It becomes a huge chunk of code! When clearly we don’t need all of that.

Remember, we want to keep everything minimal for many reasons:

  • to make it easy for our helpers to understand our data and code
  • to allow helpers to quickly focus their efforts on the right factors
  • to make the problem-solving process as easy and painless as possible
  • bonus: to help us better understand and zero-in on the source of our issue, often stumbling upon a solution along the way

Nevertheless, it remains an option for when your data appears too complex or you are not quite sure where your error lies and therefore are not sure what minimal components are needed to reproduce the example.

3.7 Using an R-build dataset


The last approach we mentioned is to build a minimal reproducible dataset based on the datasets that already exist within R (and therefore everyone would have access to).

A list of readily available datasets can be found using library(help="datasets"). You can then use ? in front of the dataset name to get more information about the contents of the dataset.

For a more detailed discussion of the benefits of using this approach see [insert something]

This approach essentially blends the skills we already learned in the first two. We need to identify a dataset with appropriate variables that match the “key elements” of our original dataset. We then need to further reduce that dataset to a minimal, relevant, number or rows. Once again, we can use the previously learned functions such as select(), filter(), or sample().

Since we already practiced everything you need, why not try it yourself?

Exercise 8: Extra Challenge

Using the “HairEyeColor” dataset, create a minimal reproducible dataset for the same issue and minimal code we have been exploring. 1. Start by using ?HairEyeColor to read a description of the dataset and View(HairEyeColor) to see the actual dataset. 2. Which variables would be a good match for our situation? What are our requirements? 3. How can we subset this dataset to make it minimal and still replicate our issue?

Remember, there are many possible solutions! The most important feature is that the example dataset can replicate the issue when used within our minimal code.

The following is 1 possible solution:

We selected Hair and Eye as replacements for species and sex because they are both categorical and have at least 3 levels. We don’t strictly need anything else. We will call our new rodents replacement hyc. We set a seed because we want a random sample.

R

set.seed(1)

# the dummy dataset
hyc <- as.data.frame(HairEyeColor) %>% # oh no! Needs to be converted to df -- might need to change example or have them figure that one out... or we can give them this first line.
  select(Hair, Eye) %>%
  slice_sample(n=10)
print(hyc)

OUTPUT

    Hair   Eye
1  Black Hazel
2  Blond Brown
3    Red  Blue
4  Black Brown
5  Brown Brown
6    Red  Blue
7    Red Hazel
8  Brown Green
9  Brown Brown
10   Red Brown

R

# the minimal code
hyc_subset <- hyc %>%
  filter(Hair == c('Red','Blonde'),
         Eye == c('Blue', 'Brown'))

# illustrating the issue
table(hyc_subset$Hair, hyc_subset$Eye) 

OUTPUT


        Brown Blue Hazel Green
  Black     0    0     0     0
  Brown     0    0     0     0
  Red       0    1     0     0
  Blond     0    0     0     0

R

# the whole subset
print(hyc_subset)

OUTPUT

  Hair  Eye
1  Red Blue

R

# But we know there are more!
table(hyc$Hair, hyc$Eye) # Reds have 2 Blue and 1 Brown, and Blonds have 1 Brown!

OUTPUT


        Brown Blue Hazel Green
  Black     1    0     1     0
  Brown     2    0     0     1
  Red       1    2     1     0
  Blond     1    0     0     0

Callout

What about NAs? If your data has NAs and they may be causing the problem, it is important to include them in your example dataset. You can find where there are NAs in your dataset by using is.na, for example: is.na(krats$weight). This will return a logical vector or TRUE if the cell contains an NA and FALSE if not. The simplest way to include NAs in your dummy dataset is to directly include it in vectors: x <- c(1,2,3,NA). You can also subset a dataset that already contains NAs, or change some of the values to NAs using mutate(ifelse()) or substitute all the values in a column by sampling from within a vector that contains NAs.

One important thing to note when subsetting a dataset with NAs is that subsetting methods that use a condition to match rows won’t necessarily match NA values in the way you expect. For example

R

test <- data.frame(x = c(NA, NA, 3, 1), y = rnorm(4))
test %>% filter(x != 3) 

OUTPUT

  x          y
1 1 -0.3053884

R

# you might expect that the NA values would be included, since “NA is not equal to 3”. But actually, the expression NA != 3 evaluates to NA, not TRUE. So the NA rows will be dropped!
# Instead you should use is.na() to match NAs
test %>% filter(x != 3 | is.na(x))

OUTPUT

   x          y
1 NA  0.4874291
2 NA  0.7383247
3  1 -0.3053884

Key Points

  • A minimal reproducible dataset contains (a) the minimum number of lines, variables, and categories, in the correct format, to replicate your issue; and (b) it must be fully reproducible, meaning that someone else can access or run the same code to reproduce the dataset needed for your reprex.
  • To make it accessible, you can create a dataset from scratch using as.data.frame, you can use an R dataset like cars, or you can use a subset of your own dataset and then use dput() to generate reproducible code.

Bonus: Additional Practice


Here are some more practice exercises if you wish to test your knowledge

Extra Practice? Would need to change from mpg, since that’s from ggplot

For each of the following, identify which data are necessary to create a minimal reproducible dataset using mpg.

  1. We want to know how the highway mpg has changed over the years
  2. We need a list of all “types” of cars and their fuel type for each manufacturer
  3. We want to compare the average city mpg for a compact car from each manufacturer

(I copied these from excercise 6 in the google doc… but I’m not sure that they are getting at the point of the lesson…)

Another Excercise

Each of the following examples needs your help to create a dataset that will correctly reproduce the given result and/or warning message when the code is run. Fix the dataset shown or fill in the blanks so it reproduces the problem.

  1. set.seed(1) sample_data <- data.frame(fruit = rep(c(“apple”, “banana”), 6), weight = rnorm(12)) ggplot(sample_data, aes(x = fruit, y = weight)) + geom_boxplot() HELP: how do I insert an image from clipboard?? Is it even possible?
  2. bodyweight <- c(12, 13, 14, , ) max(bodyweight) [1] NA
  3. sample_data <- data.frame(x = 1:3, y = 4:6) mean(sample_data\(x) [1] NA Warning message: In mean.default(sample_data\)x): argument is not numeric or logical: returning NA
  4. sample_data <- ____ dim(sample_data) NULL
  1. “fruit” needs to be a factor and the order of the levels must be specified: sample_data <- data.frame(fruit = factor(rep(c("apple", "banana"), 6), levels = c("banana", "apple")), weight = rnorm(12))
  2. one of the blanks must be an NA
  3. ?? + what’s really the point of this one?
  4. sample_data <- data.frame(x = factor(1:3), y = 4:6)

Great work! We’ve created a minimal reproducible example. In the next episode, we’ll learn about reprex, a package that can help us double-check that our example is reproducible by running it in a clean environment. (As an added bonus, reprex will format our example nicely so it’s easy to post to places like Slack, GitHub, and StackOverflow.)

Content from Minimal Reproducible Code


Last updated on 2025-05-09 | Edit this page

Overview

Questions

  • Why is it important to make a minimal code example?
  • Which part of my code is causing the problem?
  • Which parts of my code should I include in a minimal example?
  • How can I tell whether a code snippet is reproducible or not?
  • How can I make my code reproducible?

Objectives

  • XXX updateme

  • Explain the value of a minimal code snippet.
  • Identify the problem area of a script.
  • Identify supporting parts of the code that are essential to include.
  • Simplify a script down to a minimal code example.
  • Evaluate whether a piece of code is reproducible as is or not. If not, identify what is missing.
  • Edit a piece of code to make it reproducible
  • Have a road map to follow to simplify your code.
  • Describe the {reprex} package and its uses

OUTPUT


Attaching package: 'dplyr'

OUTPUT

The following objects are masked from 'package:stats':

    filter, lag

OUTPUT

The following objects are masked from 'package:base':

    intersect, setdiff, setequal, union

Mickey is interested in understanding how kangaroo rat weights differ across species and sexes, so they create a quick visualization.

R

ggplot(rodents, aes(x = species, fill = sex))+
  geom_bar()

Whoa, this is really overwhelming! Mickey forgot that the dataset includes data for a lot of different rodent species, not just kangaroo rats. Mickey is only interested in two kangaroo rat species: Dipodomys ordii (Ord’s kangaroo rat) and Dipodomys spectabilis (Banner-tailed kangaroo rat).

Mickey also notices that there are three categories for sex: F, M, and what looks like a blank field when there is no sex information available. For the purposes of comparing weights, Mickey wants to focus only rodents of known sex.

Mickey filters the data to include only the two focal species and only rodents whose sex is F or M.

R

rodents_subset <- rodents %>%
  filter(species == c("ordii", "spectabilis"),
         sex == c("F", "M"))

Because these scientific names are long, Mickey also decides to add common names to the dataset. They start by creating a data frame with the common names, which they will then join to the rodents_subset dataset:

R

## Adding common names
common_names <- data.frame(species = unique(rodents_subset$species), common_name = c("Ord's", "Banner-tailed"))
common_names

OUTPUT

      species   common_name
1 spectabilis         Ord's
2       ordii Banner-tailed

But looking at the common names dataset reveals a problem!

Applying code first aid

  1. Is this a syntax error or a semantic error? Explain why.
  2. What “code first aid” steps might be appropriate here? Which ones are unlikely to be helpful?

Mickey re-orders the names and tries the code again. This time, it works! Now they can join the common names to rodents_subset.

R

common_names <- data.frame(species = sort(unique(rodents_subset$species)), common_name = c("Ord's", "Banner-Tailed"))
common_names

OUTPUT

      species   common_name
1       ordii         Ord's
2 spectabilis Banner-Tailed

R

rodents_subset <- left_join(rodents_subset, common_names)

OUTPUT

Joining with `by = join_by(species)`

Before moving on to answering their research question about kangaroo rat weights, Mickey also wants to create a date column, since they realized that having the dates stored in three separate columns (month, day, and year) might be hard for future analysis. They want to use lubridate to parse the dates. But here, too, they run into trouble.

R

rodents_subset <- rodents_subset %>%
  mutate(date = lubridate(paste(year, month, day, sep = "-")))

ERROR

Error in `mutate()`:
ℹ In argument: `date = lubridate(paste(year, month, day, sep = "-"))`.
Caused by error in `lubridate()`:
! could not find function "lubridate"

:::instructor note Because these are fairly simple errors, more advanced learners may quickly “see” the solution and may need to be reminded to think through the exercise step by step and consider what steps could be helpful. Optionally, they can also be assigned the extra challenge exercise. :::

Applying code first aid, part 2

  1. Is this a syntax error or a semantic error? Explain why.
  2. What “code first aid” steps might be appropriate here?
  3. What would be your next step to fix this error, if you were Mickey?

Applying code first aid, part 2 (extra challenge)

Mickey tried several methods to create a date column. Here’s one of them.

R

test <- rodents_subset %>%
  mutate(date = lubridate::as_date(paste(day, month, year)))

WARNING

Warning: There was 1 warning in `mutate()`.
ℹ In argument: `date = lubridate::as_date(paste(day, month, year))`.
Caused by warning:
! All formats failed to parse. No formats found.
  1. What type of error is this?
  2. What do you learn from the warning message? Why do you think this code causes a warning message, rather than an error message?
  3. Try some code first aid steps. What do you think happened here? How did you figure it out?

Mickey reads some of the lubridate documentation and changes their code so that the date column is created correctly.

R

rodents_subset <- rodents_subset %>%
  mutate(date = lubridate::ymd(paste(year, month, day, sep = "-")))

Now that the dataset is cleaned, Mickey is ready to start learning about kangaroo rat weights!

They start by running a quick linear regression to predict weight based on species and sex.

R

weight_model <- lm(weight ~ common_name + sex, data = rodents_subset)
summary(weight_model) 

OUTPUT


Call:
lm(formula = weight ~ common_name + sex, data = rodents_subset)

Residuals:
     Min       1Q   Median       3Q      Max
-111.201   -6.466    2.534   10.799   45.799

Coefficients: (1 not defined because of singularities)
                 Estimate Std. Error t value Pr(>|t|)
(Intercept)      123.2007     0.8061  152.83   <2e-16 ***
common_nameOrd's -74.7342     1.3352  -55.97   <2e-16 ***
sexM                   NA         NA      NA       NA
---
Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

Residual standard error: 19.71 on 939 degrees of freedom
  (35 observations deleted due to missingness)
Multiple R-squared:  0.7694,	Adjusted R-squared:  0.7691
F-statistic:  3133 on 1 and 939 DF,  p-value: < 2.2e-16

The negative coefficient for common_nameOrd's tells Mickey that Ord’s kangaroo rats are significantly less heavy than Banner-tailed kangaroo rats.

But something looks wrong with the coefficients for sex! Why is everything NA for sexM?

Mickey realizes that before creating a model, they should have re-visualized the dataset to make sure everything looked correct. They make a boxplot of kangaroo rat weights by species and sex, putting the species common names on the x axis and coloring by sex. They expect to see one box for each species-sex combination.

R

rodents_subset %>%
  ggplot(aes(y = weight, x = common_name, fill = sex)) +
  geom_boxplot()

WARNING

Warning: Removed 35 rows containing non-finite outside the scale range
(`stat_boxplot()`).

As the model showed, Ord’s kangaroo rats are significantly smaller than Banner-tailed kangaroo rats. But something is definitely wrong! Because the boxes are colored by sex, we can see that all of the Banner-tailed kangaroo rats are male and all of the Ord’s kangaroo rats are female. That can’t be right! What are the chances of catching all one sex for two different species?

Mickey confirms this with a two-way frequency table.

R

table(rodents_subset$sex, rodents_subset$species)

OUTPUT


    ordii spectabilis
  F   350           0
  M     0         626

To double check, Mickey looks at the original dataset.

R

table(rodents$sex, rodents$species)

OUTPUT


    albigula eremicus flavus fulvescens fulviventer harrisi hispidus
          62       14     15          0           0     136        2
  F      474      372    222         46           3       0       68
  M      368      468    302         16           2       0       42

    leucogaster maniculatus megalotis merriami ordii penicillatus  sp.
             16           9        33       45     3            6   10
  F         373         160       637     2522   690          221    4
  M         397         248       680     3108   792          155    5

    spectabilis spilosoma taylori torridus
             42       149       0       28
  F        1135         1       0      390
  M        1232         1       3      441

Not only were there originally males and females present from both ordii and spectabilis, but the original numbers were way, way higher! It looks like somewhere along the way, Mickey lost a lot of observations.

[WORKING THROUGH CODE FIRST AID STEPS HERE] Mickey is feeling overwhelmed and not sure where their code went wrong. They were able to fix the errors and warning messages that they encountered so far, but this one seems more complicated, and there has been no clear indication of what went wrong. They work their way through the code first aid steps, but they are not able to solve the problem.

They decide to consult Remy’s road map to figure out what to do next.

Since code first aid was not enough to solve this problem, it looks like it’s time to ask for help using a reprex.

Making a reprex

Simplify the code

When asking someone else for help, it is important to simplify your code as much as possible to make it easier for the helper to understand what is wrong. Simplifying code helps to reduce frustration and overwhelm when debugging an error in a complicated script. The more that we can make the process of helping easy and painless for the helper, the more likely that they will take the time to help.

Let’s look at all the code that Mickey has written so far.

Callout

Depending on how closely you have been following the lesson and which challenges you have attempted, your script may not look exactly like Mickey’s. That’s okay!

R

# Load packages and data
library(ggplot2)
library(dplyr)
rodents <- read.csv("data/surveys_complete_77_89.csv")

# XXX ADD PETER'S EPISODE CODE HERE

## Filter to only rodents
rodents <- rodents %>% filter(taxa == "Rodent")

# Visualize sex by species
ggplot(rodents, aes(x = species, fill = sex))+
  geom_bar()

# Subset to species and sexes of interest
rodents_subset <- rodents %>%
  filter(species == c("ordii", "spectabilis"),
         sex == c("F", "M"))

# Add common names
# common_names <- data.frame(species = unique(rodents_subset$species), common_name = c("Ord's", "Banner-tailed"))
# common_names # oops, this looks wrong!
common_names <- data.frame(species = sort(unique(rodents_subset$species)), common_name = c("Ord's", "Banner-Tailed"))
common_names
rodents_subset <- left_join(rodents_subset, common_names)

# Add a date column
# rodents_subset <- rodents_subset %>%
#   mutate(date = lubridate(paste(year, month, day, sep = "-"))) # that didn't work!

rodents_subset <- rodents_subset %>%
  mutate(date = lubridate::ymd(paste(year, month, day, sep = "-")))

# Predict weight by species and sex, and make a plot
weight_model <- lm(weight ~ common_name + sex, data = rodents_subset)
summary(weight_model) 
rodents_subset %>%
  ggplot(aes(y = weight, x = common_name, fill = sex)) +
  geom_boxplot() # wait, why does this look weird?

# Investigate
table(rodents_subset$sex, rodents_subset$species)
table(rodents$sex, rodents$species)

Wow, that’s a lot! Mickey’s code also contains explanatory comments (which are great, but they may or may not be relevant to the problem at hand), and when their code threw errors, they sometimes kept the old code, commented out, for future reference.

Create a new script

To make the task of simplifying the code less overwhelming, let’s create a separate script for our reprex. This will let us experiment with simplifying our code while keeping the original script intact.

Let’s create and save a new, blank R script and give it a name, such as “reprex-script.R”

Creating a new R script

There are several ways to make an R script:

  • File > New File > R Script
  • Click the white square with a green plus sign at the top left corner of your RStudio window
  • Use a keyboard shortcut: Cmd + Shift + N (on a Mac) or Ctrl + Shift + N (on Windows)

We’re going to start by copying over all of our code, so we have an exact copy of the full analysis script.

R

# Minimal reproducible example script
# Load packages and data
library(ggplot2)
library(dplyr)
rodents <- read.csv("data/surveys_complete_77_89.csv")

# XXX ADD PETER'S EPISODE CODE HERE

## Filter to only rodents
rodents <- rodents %>% filter(taxa == "Rodent")

# Visualize sex by species
ggplot(rodents, aes(x = species, fill = sex))+
  geom_bar()

# Subset to species and sexes of interest
rodents_subset <- rodents %>%
  filter(species == c("ordii", "spectabilis"),
         sex == c("F", "M"))

# Add common names
# common_names <- data.frame(species = unique(rodents_subset$species), common_name = c("Ord's", "Banner-tailed"))
# common_names # oops, this looks wrong!
common_names <- data.frame(species = sort(unique(rodents_subset$species)), common_name = c("Ord's", "Banner-Tailed"))
common_names
rodents_subset <- left_join(rodents_subset, common_names)

# Add a date column
# rodents_subset <- rodents_subset %>%
#   mutate(date = lubridate(paste(year, month, day, sep = "-"))) # that didn't work!

rodents_subset <- rodents_subset %>%
  mutate(date = lubridate::ymd(paste(year, month, day, sep = "-")))

# Predict weight by species and sex, and make a plot
weight_model <- lm(weight ~ common_name + sex, data = rodents_subset)
summary(weight_model) 
rodents_subset %>%
  ggplot(aes(y = weight, x = common_name, fill = sex)) +
  geom_boxplot() # wait, why does this look weird?

# Investigate
table(rodents_subset$sex, rodents_subset$species)
table(rodents$sex, rodents$species)

Now, we will follow a process: 1. Identify the symptom of the problem. 2. Remove a piece of code to make the reprex more minimal. 3. Re-run the reprex to make sure the reduced code still demonstrates the problem–check that the symptom is still present.

In this case, the problem is that we are missing rows in rodents_subset that were present in rodents and should not have been removed!

Let’s start by identifying pieces of code that we can probably remove. A good start is to look for lines of code that do not create variables for later use, or lines that add complexity to the analysis that is not relevant to the problem at hand.

For starters, we can certainly remove the broken code that we commented out earlier! Also, adding a date column is not directly relevant to the current problem. Let’s go ahead and remove those pieces of code. Now our script looks like this:

R

# Minimal reproducible example script
# Load packages and data
library(ggplot2)
library(dplyr)
rodents <- read.csv("data/surveys_complete_77_89.csv")

# XXX ADD PETER'S EPISODE CODE HERE

## Filter to only rodents
rodents <- rodents %>% filter(taxa == "Rodent")

# Visualize sex by species
ggplot(rodents, aes(x = species, fill = sex))+
  geom_bar()

# Subset to species and sexes of interest
rodents_subset <- rodents %>%
  filter(species == c("ordii", "spectabilis"),
         sex == c("F", "M"))

# Add common names
common_names <- data.frame(species = sort(unique(rodents_subset$species)), common_name = c("Ord's", "Banner-Tailed"))
common_names
rodents_subset <- left_join(rodents_subset, common_names)

# Predict weight by species and sex, and make a plot
weight_model <- lm(weight ~ common_name + sex, data = rodents_subset)
summary(weight_model) 
rodents_subset %>%
  ggplot(aes(y = weight, x = common_name, fill = sex)) +
  geom_boxplot() # wait, why does this look weird?

# Investigate
table(rodents_subset$sex, rodents_subset$species)
table(rodents$sex, rodents$species)

When we run this code, we can confirm that it still demonstrates our problem. There are still many rows missing from rodents_subset.

We’ve made progress on minimizing our code, but we still have a ways to go. This script is still pretty long! Let’s identify more pieces of code that we can remove.

Minimizing code

Which other lines of code can you remove to make this script more minimal? After removing each one, be sure to re-run the code to make sure that it still reproduces the error. :::solution - [Peter’s episode code] - Visualizing sex by species (ggplot) can be removed because it generates a plot but does not create any variables that are used later. - Filtering to only rodents can be removed because later we filter to only two species in particular - Adding common names can be removed because we didn’t actually use those common names. This one is tricky because technically we did use the common names in the rodents_subset plot. But is that plot really necessary? We can still demonstrate the problem using the table() lines of code at the end. Also, we could still make the equivalent plot using the species column instead of the common_name column, and it would demonstrate the same thing! - The weight model and the summary can be removed

A totally minimal script would look like this:

R

rodents <- read.csv("data/surveys_complete_77_89.csv")

rodents_subset <- rodents %>%
  filter(species == c("ordii", "spectabilis"),
         sex == c("F", "M"))

table(rodents_subset$sex, rodents_subset$species)
table(rodents$sex, rodents$species)

:::

Great, now we have a totally minimal script!

However, we’re not done yet.

The problem area is not enough

Let’s suppose that Mickey has created the minimal problem area script shown above. They email this script to Remy so that Remy can help them debug the code.

Remy opens up the script and tries to run it on their computer, but it doesn’t work. - What do you think will happen when Remy tries to run the code from this reprex script? - What do you think Mickey should do next to improve the minimal reproducible example?

We haven’t yet included enough code to allow a helper, such as Remy, to run the code on their own computer. If Remy tries to run the reprex script in its current state, they will encounter errors because they don’t have access to the same R environment that Mickey does.

Include dependencies

R code consists primarily of functions and variables. In order to make our minimal examples truly reproducible, we have to give our helpers access to all the functions and variables that are necessary to run our code.

First, let’s talk about functions. Functions in R typically come from packages. You can access them by loading the package into your environment.

To make sure that your helper has access to the packages necessary to run your reprex, you will need to include calls to library() for whichever packages are used in the code. For example, if your code uses the function lmer from the lme4 package, you would have to include library(lme4) at the top of your reprex script to make sure your helper has the lme4 package loaded and can run your code.

Callout

Some packages, such as {base} and {stats}, are loaded in R by default, so you might not have realized that a lot of functions, such as dim, colSums, factor, and length actually come from those packages!

You can see a complete list of the functions that come from the {base} and {stats} packages by running library(help = "base") or library(help = "stats").

Let’s do this for our own reprex. We can start by identifying all the functions used, and then we can figure out where each function comes from to make sure that we tell our helper to load the right packages.

The first function used in our example is ggplot(), which comes from the package ggplot2. Therefore, we know we will need to add library(ggplot2) at the top of our script.

The function geom_boxplot() also comes from ggplot2. We also used the function table(). Running ?table tells us that the table function comes from the package {base}, which is automatically installed and loaded when you use R–that means we don’t need to include library(base) in our script.

Our reprex script now looks like this:

R

# Mickey's reprex script

# Load necessary packages to run the code
library(ggplot2)

rodents_subset %>%
  ggplot(aes(y = weight, x = common_name, fill = sex)) +
  geom_boxplot() # wait, why does this look weird?

WARNING

Warning: Removed 35 rows containing non-finite outside the scale range
(`stat_boxplot()`).

R

# Investigate
table(rodents_subset$sex, rodents_subset$species)

OUTPUT


    ordii spectabilis
  F   350           0
  M     0         626

R

table(rodents$sex, rodents$species)

OUTPUT


    albigula eremicus flavus fulvescens fulviventer harrisi hispidus
          62       14     15          0           0     136        2
  F      474      372    222         46           3       0       68
  M      368      468    302         16           2       0       42

    leucogaster maniculatus megalotis merriami ordii penicillatus  sp.
             16           9        33       45     3            6   10
  F         373         160       637     2522   690          221    4
  M         397         248       680     3108   792          155    5

    spectabilis spilosoma taylori torridus
             42       149       0       28
  F        1135         1       0      390
  M        1232         1       3      441

Installing vs. loading packages

But what if our helper doesn’t have all of these packages installed? Won’t the code not be reproducible?

Typically, we don’t include install.packages() in our code for each of the packages that we include in the library() calls, because install.packages() is a one-time piece of code that doesn’t need to be repeated every time the script is run. We assume that our helper will see library(specialpackage) and know that they need to go install “specialpackage” on their own.

Technically, this makes that part of the code not reproducible! But it’s also much more “polite”. Our helper might have their own way of managing package versions, and forcing them to install a package when they run our code risks messing up our workflow. It is a common convention to stick with library() and let them figure it out from there.

Which packages are essential?

In each of the following code snippets, identify the necessary packages (or other code) to make the example reproducible.

  • [Example (including an ambiguous function: dplyr::select() is a good one because it masks plyr::select())]
  • [Example where you have to look up which package a function comes from]
  • [Example with a user-defined function that doesn’t exist in any package]

This exercise should take about 10 minutes. :::solution FIXME

:::::::::::::::::::::::::::::::::::::::::::

Including library() calls will definitely help Remy run the code. But this code still won’t work as written because Remy does not have access to the same objects that Mickey used in the code.

The code as written relies on rodents_subset, which Remy will not have access to if they try to run the code. That means that we’ve succeeded in making our example minimal, but it is not reproducible: it does not allow someone else to reproduce the problem!

[Transition to minimal data episode]

Reflection

Let’s take a moment to reflect on this process.

  • What’s one thing you learned in this episode? An insight; a new skill; a process?

  • What is one thing you’re still confused about? What questions do you have?

This exercise should take about 5 minutes.

Key Points

  • Making a reprex is the next step after trying code first aid.
  • In order to make a good reprex, it is important to simplify your code
  • Simplify code by removing parts not directly related to the question
  • Give helpers access to the functions used in your code by loading all necessary packages

Content from Asking your question


Last updated on 2025-05-09 | Edit this page

Overview

Questions

  • How can I verify that my example is reproducible?
  • How can I easily share a reproducible example with a mentor or helper, or online?
  • How do I ask a good question?

Objectives

  • Use the reprex package to test whether an example is reproducible.
  • Use the reprex package to format reprexes for posting online.
  • Understand the benefits and drawbacks of different help forums.
  • Have a road map to follow when posting a question to make sure it’s a good question.
  • Understand what the {reprex} package does and doesn’t do.

Congratulations on finishing your reprex! In this episode, we will introduce a tool, the reprex package. This package will help you check that your example is truly reproducible and format it nicely to make it easy to present to a helper, either in person or online.

There are three principles to remember when you think about sharing your reprex with other people:

  1. Reproducibility
  2. Formatting
  3. Context

1. Reproducibility


You might be thinking, Haven’t we already talked a lot about reproducibility? We have! We discussed variables and packages, minimal datasets, and making sure that the problem is meaningfully reproduced by the data that you choose. But there are some reasons that a code snippet that appears reproducible in your own R session might not actually be runnable by someone else.

Some possible reasons:

  • You forgot to account for the origins of some functions and/or variables. We went through our code methodically, but what if we missed something? It would be nice to confirm that the code is as self-contained as we thought it was.

  • Your code accidentally relies on objects in your R environment that won’t exist for other people. For example, imagine you defined a function my_awesome_custom_function() in a project-specific functions.R script, and your code calls that function.

A function called "my_awesome_custom_function" is lurking in my R environment. I must have defined it a while ago and forgotten! Code that includes this function will not run for someone else unless the function definition is also included in the reprex.
A function called "my_awesome_custom_function" is lurking in my R environment. I must have defined it a while ago and forgotten! Code that includes this function will not run for someone else unless the function definition is also included in the reprex.

{r error = T} my_awesome_custom_function("the kangaroo rat dataset")

I might conclude that this code is reproducible–after all, it works when I run it! But unless I remembered to include the function definition in the reprex itself, nobody will be able to run the code.

A corrected reprex would look like this:

{r} my_awesome_custom_function <- function(x){print(paste0(x, " is awesome!"))} my_awesome_custom_function("the kangaroo rat dataset")

There are so many components to remember when thinking about reproducibility, especially for more complex problems. Wouldn’t it be nice if we had a way to double check our examples? Luckily, the {reprex} package will help you test your reprexes in a clean, isolated environment to make sure they’re actually reproducible.

The most important function in the reprex package is called reprex(). Here’s how to use it.

First, install and load the reprex package.

{r} #install.packages("reprex") library(reprex)

Second, write some code. This is your reproducible example.

{r} (y <- 1:4) mean(y)

Third, highlight that code and copy it to your clipboard (e.g. Cmd + C on Mac, or Ctrl + C on Windows).

Finally, type reprex() into your console.

# (with the target code snippet copied to your clipboard already...)
# In the console:
reprex()

reprex will grab the code that you copied to your clipboard and run that code in an isolated environment. It will return a nicely formatted reproducible example that includes your code and and any results, plots, warnings, or errors generated.

The generated output will be on your computer’s clipboard by default. Then, you can paste it into GitHub, StackOverflow, Slack, or another venue.

Callout

The {reprex} package workflow takes some getting used to. Instead of copying your code into the function, you simply copy it to the clipboard (a mysterious, invisible place to most of us) and then let the blank, empty reprex() function go over to the clipboard by itself and find it.

And then the completed, rendered reprex replaces the original code on the clipboard and all you need to do is paste, not copy and paste.

Let’s practice this one more time. Here’s some very simple code:

{r} library(ggplot2) library(dplyr) mpg %>% ggplot(aes(x = factor(cyl), y = displ))+ geom_boxplot()

Let’s highlight the code snippet, copy it to the clipboard, and then run reprex() in the console.

# In the console:
reprex()

The result, which was automatically placed onto my clipboard and which I pasted here, looks like this:

R

library(ggplot2)
library(dplyr)
#> 
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#> 
#>     filter, lag
#> The following objects are masked from 'package:base':
#> 
#>     intersect, setdiff, setequal, union
mpg %>% 
  ggplot(aes(x = factor(cyl), y = displ))+
  geom_boxplot()

Created on 2024-12-29 with reprex v2.1.1

Nice and neat! It even includes the plot produced, so I don’t have to take screenshots and figure out how to attach them to an email or something.

The formatting is great, but reprex really shines when you treat it as a helpful collaborator in your process of building a reproducible example (including all dependencies, providing minimal data, etc.)

Let’s see what happens if we forget to include library(ggplot2) in our small reprex above.

{r} library(dplyr) mpg %>% ggplot(aes(x = factor(cyl), y = displ))+ geom_boxplot()

As before, let’s copy that code to the clipboard, run reprex() in the console, and paste the result here.

# In the console:
reprex()

R

library(dplyr)
#> 
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#> 
#>     filter, lag
#> The following objects are masked from 'package:base':
#> 
#>     intersect, setdiff, setequal, union
mpg %>% 
  ggplot(aes(x = factor(cyl), y = displ))+
  geom_boxplot()
#> Error in ggplot(., aes(x = factor(cyl), y = displ)): could not find function "ggplot"

Created on 2024-12-29 with reprex v2.1.1

Now we get an error message indicating that R cannot find the function ggplot! That’s because we forgot to load the ggplot2 package in the reprex.

This happened even though we had ggplot2 already loaded in our own current RStudio session. reprex deliberately “plays dumb”, running the code in a clean, isolated R session that’s different from the R session we’ve been working in. This keeps us honest and makes sure we don’t forget any important packages or function definitions.

Let’s return to our previous example with the custom function.

{r} my_awesome_custom_function("the kangaroo rat dataset")

# In the console:
reprex()

R

my_awesome_custom_function("the kangaroo rat dataset")
#> Error in my_awesome_custom_function("the kangaroo rat dataset"): could not find function "my_awesome_custom_function"

Created on 2024-12-29 with reprex v2.1.1

By contrast, if we include the function definition:

{r} my_awesome_custom_function <- function(x){print(paste0(x, " is awesome!"))} my_awesome_custom_function("the kangaroo rat dataset")

# In the console:
reprex()

R

my_awesome_custom_function <- function(x){print(paste0(x, " is awesome!"))}
my_awesome_custom_function("the kangaroo rat dataset")
#> [1] "the kangaroo rat dataset is awesome!"

Created on 2024-12-29 with reprex v2.1.1

Testing it out


Now that we’ve met our new reprex-making collaborator, let’s use it to test out the reproducible example we created in the previous episode.

Here’s the code we wrote:

{r} #replace with final reprex code

Time to find out if our example is actually reproducible! Let’s copy it to the clipboard and run reprex(). Since we want to give Jordan a runnable R script, we can use venue = "r".

# In the console:
reprex(venue = "r")

It worked!

{r} #replace with final output

Now we have a beautifully-formatted reprex that includes runnable code and all the context needed to reproduce the problem.

Other features of {reprex}


Session Info

Another nice thing about reprex is that you can choose to include information about your R session, in case your error has something to do with your R settings rather than the code itself. You can do that using the session_info argument to reprex().

For example:

{r} library(ggplot2) library(dplyr) mpg %>% ggplot(aes(x = factor(cyl), y = displ))+ geom_boxplot()

# In the console:
reprex(session_info = TRUE)

R

library(ggplot2)
library(dplyr)
#> 
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#> 
#>     filter, lag
#> The following objects are masked from 'package:base':
#> 
#>     intersect, setdiff, setequal, union
mpg %>% 
  ggplot(aes(x = factor(cyl), y = displ))+
  geom_boxplot()

Created on 2024-12-29 with reprex v2.1.1

Session info

R

sessioninfo::session_info()
#> ─ Session info ───────────────────────────────────────────────────────────────
#>  setting  value
#>  version  R version 4.4.2 (2024-10-31)
#>  os       macOS Monterey 12.7.6
#>  system   aarch64, darwin20
#>  ui       X11
#>  language (EN)
#>  collate  en_US.UTF-8
#>  ctype    en_US.UTF-8
#>  tz       America/New_York
#>  date     2024-12-29
#>  pandoc   3.2 @ /Applications/RStudio.app/Contents/Resources/app/quarto/bin/tools/aarch64/ (via rmarkdown)
#> 
#> ─ Packages ───────────────────────────────────────────────────────────────────
#>  package     * version date (UTC) lib source
#>  cli           3.6.3   2024-06-21 [1] CRAN (R 4.4.0)
#>  colorspace    2.1-1   2024-07-26 [1] CRAN (R 4.4.0)
#>  curl          6.0.1   2024-11-20 [1] https://jeroen.r-universe.dev (R 4.4.2)
#>  digest        0.6.37  2024-08-19 [1] CRAN (R 4.4.1)
#>  dplyr       * 1.1.4   2023-11-17 [1] CRAN (R 4.4.0)
#>  evaluate      1.0.1   2024-10-10 [1] CRAN (R 4.4.1)
#>  fansi         1.0.6   2023-12-08 [1] CRAN (R 4.4.0)
#>  farver        2.1.2   2024-05-13 [1] CRAN (R 4.4.0)
#>  fastmap       1.2.0   2024-05-15 [1] CRAN (R 4.4.0)
#>  fs            1.6.5   2024-10-30 [1] CRAN (R 4.4.1)
#>  generics      0.1.3   2022-07-05 [1] CRAN (R 4.4.0)
#>  ggplot2     * 3.5.1   2024-04-23 [1] CRAN (R 4.4.0)
#>  glue          1.8.0   2024-09-30 [1] CRAN (R 4.4.1)
#>  gtable        0.3.6   2024-10-25 [1] CRAN (R 4.4.1)
#>  htmltools     0.5.8.1 2024-04-04 [1] CRAN (R 4.4.0)
#>  knitr         1.49    2024-11-08 [1] CRAN (R 4.4.1)
#>  labeling      0.4.3   2023-08-29 [1] CRAN (R 4.4.0)
#>  lifecycle     1.0.4   2023-11-07 [1] CRAN (R 4.4.0)
#>  magrittr      2.0.3   2022-03-30 [1] CRAN (R 4.4.0)
#>  munsell       0.5.1   2024-04-01 [1] CRAN (R 4.4.0)
#>  pillar        1.9.0   2023-03-22 [1] CRAN (R 4.4.0)
#>  pkgconfig     2.0.3   2019-09-22 [1] CRAN (R 4.4.0)
#>  R6            2.5.1   2021-08-19 [1] CRAN (R 4.4.0)
#>  reprex        2.1.1   2024-07-06 [1] CRAN (R 4.4.0)
#>  rlang         1.1.4   2024-06-04 [1] CRAN (R 4.4.0)
#>  rmarkdown     2.29    2024-11-04 [1] CRAN (R 4.4.1)
#>  rstudioapi    0.17.1  2024-10-22 [1] CRAN (R 4.4.1)
#>  scales        1.3.0   2023-11-28 [1] CRAN (R 4.4.0)
#>  sessioninfo   1.2.2   2021-12-06 [1] CRAN (R 4.4.0)
#>  tibble        3.2.1   2023-03-20 [1] CRAN (R 4.4.0)
#>  tidyselect    1.2.1   2024-03-11 [1] CRAN (R 4.4.0)
#>  utf8          1.2.4   2023-10-22 [1] CRAN (R 4.4.0)
#>  vctrs         0.6.5   2023-12-01 [1] CRAN (R 4.4.0)
#>  withr         3.0.2   2024-10-28 [1] CRAN (R 4.4.1)
#>  xfun          0.49    2024-10-31 [1] CRAN (R 4.4.1)
#>  xml2          1.3.6   2023-12-04 [1] CRAN (R 4.4.0)
#>  yaml          2.3.10  2024-07-26 [1] CRAN (R 4.4.0)
#> 
#>  [1] /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/library
#> 
#> ──────────────────────────────────────────────────────────────────────────────

Formatting

The output of reprex() is markdown, which can easily be copied and pasted into many sites/apps. However, different places have slightly different formatting conventions for markdown. reprex lets you customize the output of your reprex according to where you’re planning to post it.

The default, venue = "gh", gives you “GitHub-Flavored Markdown”. Another format you might want is “r”, which gives you a runnable R script, with commented output interleaved.

Check out the formatting options in the help file with ?reprex, and try out a few depending on the destination of your reprex!

{reprex} can’t do everything for you!

People often mention reprex as a useful tool for creating reproducible examples, but it can’t do the work of crafting the example for you! The package doesn’t locate the problem, pare down the code, create a minimal dataset, or automatically include package dependencies.

A better way to think of reprex is as a tool to check your work as you go through the process of creating a reproducible example, and to help you polish up the result.

Section on context


Section on how to decide where to post your question


Key Points

  • The {reprex} package makes it easy to format and share your reproducible examples.
  • The {reprex} package helps you test whether your reprex is reproducible, and also helps you prepare the reprex to share with others.
  • Following a certain set of steps will make your questions clearer and likelier to get answered.